From fd208252b40f234da2fc9ec3e93004d8e5924758 Mon Sep 17 00:00:00 2001 From: lbdreyer Date: Thu, 24 Aug 2017 15:03:30 +0100 Subject: [PATCH] Set nosetests to run on 8 cores on travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9974e5b554..ddb7c1b536 100644 --- a/.travis.yml +++ b/.travis.yml @@ -119,10 +119,10 @@ install: script: - if [[ $TEST_TARGET == 'default' ]]; then - python -m iris.tests.runner --default-tests --system-tests --print-failed-images --num-processors=1; + python -m iris.tests.runner --default-tests --system-tests --print-failed-images --num-processors=8; fi - if [[ $TEST_TARGET == 'example' ]]; then - python -m iris.tests.runner --example-tests --print-failed-images --num-processors=1; + python -m iris.tests.runner --example-tests --print-failed-images --num-processors=8; fi # "make html" produces an error when run on Travis that does not # affect any downstream functionality but causes the build to fail