From e9f0d53382f3ccca35cce7a8d0cdba22fc8f2099 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Tue, 11 Aug 2015 23:37:41 +1000 Subject: [PATCH] Disabled Travis coverage scripts for nightly build --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index caa9746c8..fc687d5ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,12 +35,12 @@ install: - pushd depends && ./install_openjpeg.sh && popd script: - - coverage erase + - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage erase; fi - python setup.py clean - CFLAGS="-coverage" python setup.py build_ext --inplace - - coverage run --append --include=PIL/* selftest.py - - coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py + - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage run --append --include=PIL/* selftest.py; fi + - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py; fi - check-manifest --ignore "depends/*" after_success: