diff options
author | Viktor Tikkanen <viktor.tikkanen@nokia.com> | 2015-12-30 10:00:13 +0200 |
---|---|---|
committer | Viktor Tikkanen <viktor.tikkanen@nokia.com> | 2015-12-30 10:10:57 +0200 |
commit | c7a557e16a7dfa50d904b2c1a15d9448a9ab9d09 (patch) | |
tree | 55074c594f59543aa0a3ffb3b737d71b13deb67b /docker | |
parent | e250cde1fc43246c3464e0efd35fc5fb1fece561 (diff) |
Support for customized tempest case list
Newer release (0.1.2) of Rally has introduced some syntax changes
(e.g. "--set" option for test set selection), so run_tempest.py is
updated according to them.
Custom test case list is taken into use instead of smoke test set.
The list itself is updated (rally didn't recognize test cases with
'gate' definition).
JIRA: FUNCTEST-72
Change-Id: I5e178f90f66fda7cb8099ddb4f82b93af3148c79
Signed-off-by: Viktor Tikkanen <viktor.tikkanen@nokia.com>
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/run_tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 898cc4ca..28830e84 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -77,9 +77,9 @@ function run_test(){ fi ;; "tempest") - info "Running Tempest smoke tests..." + info "Running Tempest tests..." python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_tempest.py \ - --debug -m smoke ${report} + --debug -m custom ${report} # save tempest.conf for further troubleshooting tempest_conf="${RALLY_VENV_DIR}/tempest/for-deployment-*/tempest.conf" if [ -f ${tempest_conf} ]; then |