Skip to content

Commit 6072f4d

Browse files
make: separate phony for each target
Part of #198
1 parent 3e25e2f commit 6072f4d

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

Makefile

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
1-
.PHONY: install test docs
1+
.PHONY: install
22
install:
33
pip3 install --editable .
4+
5+
6+
.PHONY: test
47
test:
58
python3 setup.py test
9+
10+
.PHONY: testdata
611
testdata:
712
cd ./test/data/; ./generate.sh
13+
14+
.PHONY: coverage
815
coverage:
916
python3 -m coverage run -p --source=. setup.py test
17+
18+
.PHONY: cov-html
1019
cov-html:
1120
python3 -m coverage html -i
21+
22+
.PHONY: cov-report
1223
cov-report:
1324
python3 -m coverage report
25+
26+
27+
.PHONY: docs
1428
docs:
1529
python3 setup.py build_sphinx

0 commit comments

Comments
 (0)