X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fcloud-infra%2Fcloud-infra-test.sh;h=a473fcd1efcc4875a8fa91ea3960cdeec05f3427;hb=f2b51873a346fec4e1709c4bf3e60dff76431c12;hp=952a7fd15571d827136c45de825b08dff3af973e;hpb=0c5a4868e50ee71f73b93b559dd98438a521f966;p=infra%2Fcicd.git diff --git a/jjb/cloud-infra/cloud-infra-test.sh b/jjb/cloud-infra/cloud-infra-test.sh index 952a7fd1..a473fcd1 100644 --- a/jjb/cloud-infra/cloud-infra-test.sh +++ b/jjb/cloud-infra/cloud-infra-test.sh @@ -28,8 +28,21 @@ 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 + +# we don't support testing of the deployments done on OpenStack cloud using heat yet +if [[ $DEPLOY_TYPE == "cloud" ]]; then + echo "Info: Testing of cloud deployments has not been implemented yet!" + exit 0 +fi + +# execute cloud engine test.sh script with arguments cd $WORKSPACE -./test/test.sh +./test/test.sh -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO -d $YARDSTICK_DISPATCHER # vim: set ts=2 sw=2 expandtab: