Skip to content

Commit e275221

Browse files
committed
Update .travis.yml
1 parent 33e1260 commit e275221

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ python:
88
- "nightly" # currently points to 3.6-dev
99
# command to install dependencies
1010
install:
11-
- "pip install coverage"
12-
# # command to run tests
11+
# Coveralls 4.0 doesn't support Python 3.2
12+
- 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
1316
script:
1417
- "nosetests"
1518
- "make coverage"

0 commit comments

Comments
 (0)