]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Backport coverage py32 fix to branch4.0
authorBen Darnell <ben@bendarnell.com>
Thu, 22 Oct 2015 02:01:23 +0000 (22:01 -0400)
committerBen Darnell <ben@bendarnell.com>
Thu, 22 Oct 2015 02:01:23 +0000 (22:01 -0400)
.travis.yml

index f24db6f3d3166d1026258dc10c837bdee941d7b9..437b5259325b5a2a77ffada89a88173eeb4e9b58 100644 (file)
@@ -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: