From 844e4db2a9a8dae54e79028ee380d9e70b8d82e1 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Sun, 9 Dec 2018 01:24:24 -0500 Subject: [PATCH] functional: stop using concurrency of 1 for api tests There is no need for API tests to be running with concurrency of one, we can drop that and speed up the API test suite by using all of our cores. Change-Id: Ideb379ba7032e83bde852198fc66ccd623ae1424 --- magnum/tests/contrib/post_test_hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magnum/tests/contrib/post_test_hook.sh b/magnum/tests/contrib/post_test_hook.sh index dd53fe327c..b0a560c49a 100755 --- a/magnum/tests/contrib/post_test_hook.sh +++ b/magnum/tests/contrib/post_test_hook.sh @@ -216,7 +216,7 @@ if [[ "api" == "$coe" ]]; then pushd $BASE/new/magnum-tempest-plugin sudo cp $CREDS_FILE . - sudo -E -H -u $USER tox -e functional-"$target" $_magnum_tests -- --concurrency=1 + sudo -E -H -u $USER tox -e functional-"$target" $_magnum_tests EXIT_CODE=$? popd else