Add vIMS test-case in run_tests script
authorboucherv <valentin.boucher@orange.com>
Thu, 29 Oct 2015 16:14:07 +0000 (17:14 +0100)
committerboucherv <valentin.boucher@orange.com>
Thu, 29 Oct 2015 16:39:34 +0000 (17:39 +0100)
JIRA: FUNCTEST-38

Change-Id: I3e4b640f094286a9b4b8debbbae4700c12c0fdc6
Signed-off-by: boucherv <valentin.boucher@orange.com>
docker/run_tests.sh

index 7c28971..2a523ed 100755 (executable)
@@ -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
 }