Parallel mode, no append for coverage

This commit is contained in:
wiredfool 2014-06-26 23:22:20 -07:00
parent 1f7c4fa98c
commit b69057001f

View File

@ -35,10 +35,11 @@ script:
- if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then time nosetests Tests/test_*.py; fi - if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then time nosetests Tests/test_*.py; fi
# Cover the others # Cover the others
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --append --include=PIL/* selftest.py; fi - if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --parallel-mode --include=PIL/* selftest.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --parallel-mode --append --include=PIL/* -m nose Tests/test_*.py; fi - if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --parallel-mode --include=PIL/* -m nose Tests/test_*.py; fi
after_success: after_success:
- ls -l .coverage*
- coverage combine - coverage combine
- coverage report - coverage report
- coveralls - coveralls