diff --git a/.travis.yml b/.travis.yml index 3146ec3a5b..d55705c1cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,8 @@ script: # Compile all the files - python -m compileall -q -f . - python setup.py --quiet build - - py.test --boxed --cov=. -r EfsxX + - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then py.test --cov=. -r EfsxX; fi + - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then py.test --boxed -r EfsxX; fi - ./tools/pep8.sh travis # -W report warnings as errors when building docs - cd docs; make SPHINXOPTS=-W html; cd ..