summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocker/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
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