From 822e22975778006780728e2759640fae8d4c1c02 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Thu, 14 Jan 2016 15:44:28 -0500 Subject: Adds check to make deploy scenario is also not "none" (default) Change-Id: I9727c9b2f1fc35c3eb39f2930bb5dd0684bb570c Signed-off-by: Tim Rozet (cherry picked from commit 5509502fa7ebe0555c52afa5d574f4c1bba04eac) --- docker/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker') 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 -- cgit 1.2.3-korg