We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae673e commit 9ae19b1Copy full SHA for 9ae19b1
1 file changed
.travis.yml
@@ -11,11 +11,14 @@ python:
11
12
install:
13
- "pip install ."
14
- - "pip install -U flake8"
+ - "pip install -U coveralls flake8"
15
16
script:
17
- - "python setup.py test"
+ - "coverage run --include='cdblib/*.py' setup.py test"
18
- "flake8 ."
19
20
notifications:
21
- email: false
22
+
23
+after_success:
24
+ - "coveralls"
0 commit comments