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 7f84458 commit 9f5eac4Copy full SHA for 9f5eac4
1 file changed
.travis.yml
@@ -1,6 +1,15 @@
1
+sudo: false
2
language: python
3
python:
4
- "3.5"
5
- "3.6"
6
+install:
7
+ - pip install -r requirements.txt
8
+ - pip install python_coveralls pytest-cov
9
script:
- PYTHONPATH=$PWD:$PYTHONPATH pytest
10
+ PYTHONPATH=$PWD:$PYTHONPATH pytest --cov vicses.viper
11
+after_success:
12
+ # Only publish coverage once, easier to always run though
13
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then
14
+ coveralls;
15
+ fi
0 commit comments