Skip to content

Commit

Permalink
Set --serial as default in run-tempest.sh
Browse files Browse the repository at this point in the history
Currently this is set in gate-check-commit, but this is a sensible
default for situations other than gate-check-commit so it should be set
in run-tempest itself.

Change-Id: I0bef1c5650757d54dd4fbeb6b872bd00cabed627
Closes-bug: #1530796
  • Loading branch information
hughsaunders authored and Jesse Pretorius committed Jan 5, 2016
1 parent c21e88e commit 8502219
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion scripts/gate-check-commit.sh
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-tempest.sh
Expand Up @@ -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 -------------------------------------------------------------
Expand Down

0 comments on commit 8502219

Please sign in to comment.