We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dedf6ee commit 978e5cfCopy full SHA for 978e5cf
1 file changed
.travis.yml
@@ -8,7 +8,10 @@ python:
8
# - "3.5"
9
# - "3.5-dev" # 3.5 development branch
10
# - "nightly" # currently points to 3.6-dev
11
-# command to install dependencies
12
-#install: "pip install -r requirements.txt"
13
-# command to run tests
14
-script: python tests/run_tests.py
+
+script:
+ # run tests with coverage
+ - coverage run tests/run_tests.py
15
16
+after_success:
17
+ - coverage report -m
0 commit comments