diff options
author | boucherv <valentin.boucher@orange.com> | 2015-10-29 17:14:07 +0100 |
---|---|---|
committer | boucherv <valentin.boucher@orange.com> | 2015-10-29 17:39:34 +0100 |
commit | 34fb580d2a2df0a3e41bc45865a6dfb35bdc9244 (patch) | |
tree | 54d4d64dd5ec88c93936baa2166d3621760a37e5 /docker/run_tests.sh | |
parent | 0bfbc86b0602898b755f549091f6f6aa4ff41080 (diff) |
Add vIMS test-case in run_tests script
JIRA: FUNCTEST-38
Change-Id: I3e4b640f094286a9b4b8debbbae4700c12c0fdc6
Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'docker/run_tests.sh')
-rwxr-xr-x | docker/run_tests.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 7c289719d..2a523ed3d 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -28,7 +28,7 @@ examples: # Support for Functest offline # NOTE: Still not 100% working when running the tests offline=false -arr_test=(vping odl rally tempest) +arr_test=(vping odl rally tempest vims) function run_test(){ @@ -64,10 +64,6 @@ function run_test(){ cp -Rf ${odl_logs} ${FUNCTEST_CONF_DIR}/ODL/ fi ;; - "rally") - info "Running Rally benchmark suite..." - python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug ${FUNCTEST_REPO_DIR}/ all - ;; "tempest") info "Running Tempest smoke tests..." rally verify start smoke @@ -78,6 +74,14 @@ function run_test(){ cp $tempest_conf ${FUNCTEST_CONF_DIR} fi ;; + "vims") + info "Running vIMS test..." + python ${FUNCTEST_REPO_DIR}/testcases/vIMS/CI/vIMS.py --debug ${FUNCTEST_REPO_DIR}/ + ;; + "rally") + info "Running Rally benchmark suite..." + python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug ${FUNCTEST_REPO_DIR}/ all + ;; esac } |