Merge pull request #662 from hugovk/nocoverpypy

Don't run coverage on PyPy jobs
This commit is contained in:
wiredfool 2014-05-20 16:44:00 +01:00
commit b1c50df0c4

View File

@ -26,8 +26,14 @@ script:
- coverage erase
- python setup.py clean
- python setup.py build_ext --inplace
- coverage run --append --include=PIL/* selftest.py
- python Tests/run.py --coverage
# Don't cover PyPy: it fails intermittently and is x5.8 slower (#640)
- if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then python selftest.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then python Tests/run.py; fi
# Cover the others
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then coverage run --append --include=PIL/* selftest.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then python Tests/run.py --coverage; fi
after_success:
- coverage report
@ -37,7 +43,3 @@ after_success:
- pyflakes PIL/*.py
- pep8 Tests/*.py
- pyflakes Tests/*.py
matrix:
allow_failures:
- python: "pypy"