summaryrefslogtreecommitdiff
path: root/tools/travis/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/travis/run.sh')
-rwxr-xr-xtools/travis/run.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/travis/run.sh b/tools/travis/run.sh
index aea29349c..86f975f4f 100755
--- a/tools/travis/run.sh
+++ b/tools/travis/run.sh
@@ -41,12 +41,12 @@ echo "TOXENV=${TOXENV}"
set -x
if [[ "$GROUP" == "1" ]]; then
# Unit tests
- tox -- --use-venv -m unit
+ tox -- --use-venv -m unit -n auto
# Integration tests (not the ones for 'pip install')
- tox -- --use-venv -m integration -n 4 --duration=5 -k "not test_install"
+ tox -- --use-venv -m integration -n auto --duration=5 -k "not test_install"
elif [[ "$GROUP" == "2" ]]; then
# Separate Job for running integration tests for 'pip install'
- tox -- --use-venv -m integration -n 4 --duration=5 -k "test_install"
+ tox -- --use-venv -m integration -n auto --duration=5 -k "test_install"
else
# Non-Testing Jobs should run once
tox