From 1f7c4fa98ca73924eb3d116eec7bc06486888dae Mon Sep 17 00:00:00 2001 From: wiredfool Date: Thu, 26 Jun 2014 23:09:51 -0700 Subject: [PATCH] put coverage in parallel mode --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c4964e166..de4777198 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,9 +36,10 @@ script: # 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 --append --include=PIL/* -m nose Tests/test_*.py; fi + - if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then time coverage run --parallel-mode --append --include=PIL/* -m nose Tests/test_*.py; fi after_success: + - coverage combine - coverage report - coveralls - pip install pep8 pyflakes