From 8395ce5be332c240dab6fb379a2fb621361f5b9d 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 bf618a27af..b832e55d43 100644 --- a/.travis.yml +++ b/.travis.yml @@ -112,10 +112,10 @@ install: script: - if [[ $TEST_TARGET == 'default' ]]; then - python -m iris.tests.runner --default-tests --system-tests --print-failed-images; + 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; + 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