We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e25e2f commit 6072f4dCopy full SHA for 6072f4d
Makefile
@@ -1,15 +1,29 @@
1
-.PHONY: install test docs
+.PHONY: install
2
install:
3
pip3 install --editable .
4
+
5
6
+.PHONY: test
7
test:
8
python3 setup.py test
9
10
+.PHONY: testdata
11
testdata:
12
cd ./test/data/; ./generate.sh
13
14
+.PHONY: coverage
15
coverage:
16
python3 -m coverage run -p --source=. setup.py test
17
18
+.PHONY: cov-html
19
cov-html:
20
python3 -m coverage html -i
21
22
+.PHONY: cov-report
23
cov-report:
24
python3 -m coverage report
25
26
27
+.PHONY: docs
28
docs:
29
python3 setup.py build_sphinx
0 commit comments