Merge "Add master integration test job for metal3_dev_env"
[infra/cicd.git] / jjb / cloud-infra / cloud-infra-test.sh
index 952a7fd15571d827136c45de825b08dff3af973e..7d6936043bcfbac2f69f7ef6a4ab2617f229e9f1 100644 (file)
@@ -28,8 +28,15 @@ set -o pipefail
 # Logic in this script should be kept at minimum and the changes should be pushed into
 # the cloud infra test test.sh script.
 
-# execute cloud engine test.sh script
+# we don't support ONAP scenario verification because it is expensive
+# TODO: we need to find a way to verify those patches in a cheaper way
+if [[ "$DEPLOY_SCENARIO" =~ "onap" ]]; then
+  echo "Info: ONAP scenario verification has not been implemented yet!"
+  exit 0
+fi
+
+# execute cloud engine test.sh script with arguments
 cd $WORKSPACE
-./test/test.sh
+./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO -d $YARDSTICK_DISPATCHER
 
 # vim: set ts=2 sw=2 expandtab: