From bdd610af9a0349bd69bd83974179b81eea0e535e Mon Sep 17 00:00:00 2001 From: hugovk Date: Fri, 18 Apr 2014 12:58:24 +0300 Subject: [PATCH] Remove parallel tests to benchmark serial times --- .travis.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3af69464f..34ffcfe1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,8 @@ script: - coverage erase - python setup.py clean - python setup.py build_ext --inplace - - $TEST_CMD + - coverage run --append --include=PIL/* selftest.py + - python Tests/run.py --coverage after_success: - coverage report @@ -38,10 +39,6 @@ after_success: - pep8 PIL/*.py - pyflakes PIL/*.py -env: - - TEST_CMD="coverage run --append --include=PIL/* selftest.py" - - TEST_CMD="python Tests/run.py --coverage" - matrix: allow_failures: - python: "pypy"