diff --git a/.travis.yml b/.travis.yml index 536a18582..3412cf57e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,13 +21,17 @@ python: install: - "travis_retry sudo apt-get -qq install libfreetype6-dev liblcms2-dev python-qt4 ghostscript libffi-dev libjpeg-turbo-progs cmake imagemagick" - "travis_retry pip install cffi" - - "travis_retry pip install coverage nose" + - "travis_retry pip install nose" - "travis_retry pip install check-manifest" # Pyroma tests sometimes hang on PyPy; skip for PyPy - if [ $TRAVIS_PYTHON_VERSION != "pypy" ]; then travis_retry pip install pyroma; fi - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then travis_retry pip install unittest2; fi + # Coveralls 4.0 doesn't support Python 3.2 + - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi + - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi + # webp - pushd depends && ./install_webp.sh && popd