File: Makefile

package info (click to toggle)
python-schwifty 2024.09.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,072 kB
  • sloc: python: 3,057; makefile: 209; sh: 9
file content (24 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.PHONY: docs
docs:
	(cd docs; make html)

.PHONY: test
test:
	hatch run test

.PHONY: lint
lint:
	hatch run lint:typing
	hatch run lint:style

.PHONY: lint-docs
lint-docs:
	hatch run lint:docs

.PHONY: fmt
fmt:
	hatch run lint:fmt

.PHONY: build
build:
	hatch build