8000
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 1310c0c commit 320deb5Copy full SHA for 320deb5
.travis.yml
@@ -8,7 +8,10 @@ python:
8
install:
9
- "pip install ."
10
- "pip install pytest"
11
- - "pip install coverage coveralls"
+ - "pip install coveralls"
12
+ # Coveralls 4.0 doesn't support Python 3.2
13
+ - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
14
+ - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi
15
script: coverage run setup.py test
16
after_success:
17
- coveralls
0 commit comments