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
This commit is contained in:
Mohammed Naser 2018-12-09 01:24:24 -05:00 committed by Spyros Trigazis
parent c8ab4efcbc
commit 844e4db2a9
1 changed files with 1 additions and 1 deletions

View File

@ -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