Merge pull request #1376 from radarhere/travis

Disabled Travis coverage script for nightly
This commit is contained in:
Hugo van Kemenade 2015-08-11 21:58:02 +03:00
commit e4f68d0658

View File

@ -35,12 +35,12 @@ install:
- pushd depends && ./install_openjpeg.sh && popd - pushd depends && ./install_openjpeg.sh && popd
script: script:
- coverage erase - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage erase; fi
- python setup.py clean - python setup.py clean
- CFLAGS="-coverage" python setup.py build_ext --inplace - CFLAGS="-coverage" python setup.py build_ext --inplace
- coverage run --append --include=PIL/* selftest.py - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage run --append --include=PIL/* selftest.py; fi
- coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py; fi
- check-manifest --ignore "depends/*" - check-manifest --ignore "depends/*"
after_success: after_success: