Merge pull request #850 from hugovk/pyroma

Pyroma installation is slow on Py3, so just do it for Py2
This commit is contained in:
wiredfool 2014-08-19 09:41:46 -07:00
commit 56e3b6047a

View File

@ -20,7 +20,10 @@ install:
- "pip install cffi" - "pip install cffi"
- "pip install coveralls nose coveralls-merge" - "pip install coveralls nose coveralls-merge"
- "gem install coveralls-lcov" - "gem install coveralls-lcov"
- travis_retry pip install pyroma
# Pyroma installation is slow on Py3, so just do it for Py2.
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then travis_retry pip install pyroma; fi
- if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install unittest2; fi - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install unittest2; fi
# webp # webp