We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36dc163 commit 48bb8a2Copy full SHA for 48bb8a2
.travis.yml
@@ -9,6 +9,6 @@ python:
9
install:
10
- pip install coveralls
11
script:
12
- coverage run tests/test_*.py
+ make tests
13
after_success:
14
coveralls
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: clean pep8 lint test
+.PHONY: clean pep8 lint test coverage
2
3
clean:
4
rm -fr build
@@ -16,6 +16,9 @@ lint:
16
test:
17
@- $(foreach TEST, $(wildcard tests/test_*.py), python $(TEST);)
18
19
+coverage:
20
+ @- $(foreach TEST, $(wildcard tests/test_*.py), coverage run $(TEST);)
21
+
22
help:
23
@echo "Available targets:"
24
@echo "- clean Clean up the source directory"
0 commit comments