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 33e1260 commit e275221Copy full SHA for e275221
.travis.yml
@@ -8,8 +8,11 @@ python:
8
- "nightly" # currently points to 3.6-dev
9
# command to install dependencies
10
install:
11
- - "pip install coverage"
12
-# # command to run tests
+ # Coveralls 4.0 doesn't support Python 3.2
+ - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
13
+ - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
14
+
15
+# command to run tests
16
script:
17
- "nosetests"
18
- "make coverage"
0 commit comments