From: Ben Darnell Date: Sun, 27 Sep 2015 15:58:07 +0000 (-0400) Subject: Fix coverage installation for py32. X-Git-Tag: v4.3.0b1~41^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=006a93e9e6d86cf36984d40cbcdb37435459a6b4;p=thirdparty%2Ftornado.git Fix coverage installation for py32. --- diff --git a/.travis.yml b/.travis.yml index 831f16213..4b199eb8c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: