Skip to content

Commit 978e5cf

Browse files
committed
.travis.yml: Add coverage information
1 parent dedf6ee commit 978e5cf

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ python:
88
# - "3.5"
99
# - "3.5-dev" # 3.5 development branch
1010
# - "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
11+
12+
script:
13+
# run tests with coverage
14+
- coverage run tests/run_tests.py
15+
16+
after_success:
17+
- coverage report -m

0 commit comments

Comments
 (0)