diff --git a/scripts/gate-check-commit.sh b/scripts/gate-check-commit.sh index a5414f2c0d..524b22042c 100755 --- a/scripts/gate-check-commit.sh +++ b/scripts/gate-check-commit.sh @@ -19,7 +19,6 @@ set -e -u -x ## Variables ----------------------------------------------------------------- export MAX_RETRIES=${MAX_RETRIES:-"2"} # tempest and testr options, default is to run tempest in serial -export RUN_TEMPEST_OPTS=${RUN_TEMPEST_OPTS:-'--serial'} export TESTR_OPTS=${TESTR_OPTS:-''} # Disable the python output buffering so that jenkins gets the output properly export PYTHONUNBUFFERED=1 diff --git a/scripts/run-tempest.sh b/scripts/run-tempest.sh index cb36f42b95..8d79d66135 100755 --- a/scripts/run-tempest.sh +++ b/scripts/run-tempest.sh @@ -23,7 +23,7 @@ export TEMPEST_SCRIPT_PATH=${TEMPEST_SCRIPT_PATH:-/opt/openstack_tempest_gate.sh ## is able to dig into tempest/the updated/deprecated config(s). This test should ## go back to being the scenario tests. export TEMPEST_SCRIPT_PARAMETERS=${TEMPEST_SCRIPT_PARAMETERS:-"scenario heat_api cinder_backup"} -export RUN_TEMPEST_OPTS=${RUN_TEMPEST_OPTS:-''} +export RUN_TEMPEST_OPTS=${RUN_TEMPEST_OPTS:-'--serial'} export TESTR_OPTS=${TESTR_OPTS:-''} ## Library Check -------------------------------------------------------------