From: Ben Darnell Date: Thu, 22 Oct 2015 02:01:23 +0000 (-0400) Subject: Backport coverage py32 fix to branch4.0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f9abcf9108d2d3c2104a3a667ec2e3a011ddd3d;p=thirdparty%2Ftornado.git Backport coverage py32 fix to branch4.0 --- diff --git a/.travis.yml b/.travis.yml index f24db6f3d..437b52593 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,9 @@ install: # On travis the extension should always be built - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then export TORNADO_EXTENSION=1; fi - 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 - pip install coveralls script: