From: Hugo Date: Mon, 23 Nov 2015 20:08:23 +0000 (+0200) Subject: Coverage 4.0 doesn't support Python 3.2 X-Git-Url: https://jfr.im/git/z_archive/twitter.git/commitdiff_plain/7cb2b873318227f18647f061568c5299b3843617 Coverage 4.0 doesn't support Python 3.2 So use the last one that worked for 3.2. Fixes #310. --- diff --git a/.travis.yml b/.travis.yml index 7805c6a..cc2b2c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,9 @@ python: - "pypy" install: - - pip install coveralls + # Coveralls 4.0 doesn't support Python 3.2 + - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi + - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi script: nosetests --with-coverage --cover-package=twitter