Fix coverage installation for py32.

This commit is contained in:
Ben Darnell 2015-09-27 11:58:07 -04:00
parent 9091c9c1de
commit 006a93e9e6
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@ install:
# On travis the extension should always be built
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy'* ]]; then export TORNADO_EXTENSION=1; fi
- travis_retry python setup.py install
# Coverage 4.0 no longer supports py32. Install an older version before
# codecov tries to install the latest.
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then travis_retry pip install 'coverage<4.0'; fi
- travis_retry pip install codecov
script: