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 85d9754 commit 5d300c7Copy full SHA for 5d300c7
Makefile
@@ -17,7 +17,7 @@ testloop:
17
18
cov cover coverage:
19
nosetests -s --with-cover --cover-html --cover-branches --cover-html-dir ./coverage $(FLAGS) ./tests/
20
- echo "open file://`pwd`/coverage/index.html"
+ @echo "open file://`pwd`/coverage/index.html"
21
22
clean:
23
rm -rf `find . -name __pycache__`
@@ -33,7 +33,7 @@ clean:
33
rm -rf build
34
35
doc:
36
- cd docs && make html
37
- echo "open file://`pwd`/docs/_build/html/index.html"
+ make -C docs html
+ @echo "open file://`pwd`/docs/_build/html/index.html"
38
39
.PHONY: all build venv flake test vtest testloop cov clean doc
0 commit comments