Skip to content

Commit

Permalink
Merge 6ca9e9d into 84a701a
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed May 14, 2014
2 parents 84a701a + 6ca9e9d commit dc94d05
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
Expand Up @@ -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
Expand All @@ -37,7 +43,3 @@ after_success:
- pyflakes PIL/*.py
- pep8 Tests/*.py
- pyflakes Tests/*.py

matrix:
allow_failures:
- python: "pypy"

0 comments on commit dc94d05

Please sign in to comment.