From: Tim Rozet Date: Thu, 14 Jan 2016 20:44:28 +0000 (-0500) Subject: Adds check to make deploy scenario is also not "none" (default) X-Git-Tag: brahmaputra.1.0~169 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=822e22975778006780728e2759640fae8d4c1c02;p=functest.git Adds check to make deploy scenario is also not "none" (default) Change-Id: I9727c9b2f1fc35c3eb39f2930bb5dd0684bb570c Signed-off-by: Tim Rozet (cherry picked from commit 5509502fa7ebe0555c52afa5d574f4c1bba04eac) --- diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 2cb10e3e8..bbe0d9ede 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -32,7 +32,7 @@ offline=false report="" # Get the list of runnable tests # Check if we are in CI mode -if [ -n "$DEPLOY_SCENARIO" ]; then +if [[ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" ]]; then testcase=`cat /home/opnfv/functest/conf/testcase-list.txt` arr_test=("$testcase") else