Skip hanging Pyroma tests on Python 2.6

This commit is contained in:
hugovk 2015-09-22 16:43:00 +03:00
parent e69306e3ff
commit ec40c150cc

View File

@ -24,7 +24,7 @@ install:
- "travis_retry pip install nose"
- "travis_retry pip install check-manifest"
# Pyroma tests sometimes hang on PyPy and Python 2.6; skip for those
- if [ $TRAVIS_PYTHON_VERSION != "pypy" ]; if [ $TRAVIS_PYTHON_VERSION != "2.6" ]; then travis_retry pip install pyroma; fi; fi
- if [ $TRAVIS_PYTHON_VERSION != "pypy" && $TRAVIS_PYTHON_VERSION != "2.6" ]; then travis_retry pip install pyroma; fi
- if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then travis_retry pip install unittest2; fi