Cover pypy

This commit is contained in:
hugovk 2014-07-30 12:04:04 +03:00
parent c7a6f162ca
commit a5302dcea9

View File

@ -33,18 +33,12 @@ script:
- python setup.py clean - python setup.py clean
- python setup.py build_ext --inplace - python setup.py build_ext --inplace
# Don't cover PyPy: it fails intermittently and is x5.8 slower (#640) - time coverage run --append --include=PIL/* selftest.py
- if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then time python selftest.py; fi - coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py
- if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then time nosetests -vx Tests/test_*.py; fi
# Cover the others
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --append --include=PIL/* selftest.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py; fi
after_success: after_success:
- coverage report - coverage report
# No need to send empty coverage to Coveralls for PyPy - coveralls
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then coveralls; fi
- pip install pep8 pyflakes - pip install pep8 pyflakes
- pep8 --statistics --count PIL/*.py - pep8 --statistics --count PIL/*.py