This commit is contained in:
Hugo 2014-04-18 19:05:12 +00:00
commit afa6f95b41

View File

@ -29,8 +29,7 @@ script:
- coverage erase - coverage erase
- python setup.py clean - python setup.py clean
- python setup.py build_ext --inplace - python setup.py build_ext --inplace
- coverage run --append --include=PIL/* selftest.py - $TEST_CMD
- python Tests/run.py --coverage
after_success: after_success:
- coverage report - coverage report
@ -39,6 +38,10 @@ after_success:
- pep8 PIL/*.py - pep8 PIL/*.py
- pyflakes PIL/*.py - pyflakes PIL/*.py
env:
- TEST_CMD="coverage run --append --include=PIL/* selftest.py"
- TEST_CMD="python Tests/run.py --coverage"
matrix: matrix:
allow_failures: allow_failures:
- python: "pypy" - python: "pypy"