From 20b36795291f3e35b11b38fd9f58fa4d6d4e12bc Mon Sep 17 00:00:00 2001 From: Ryota MIBU Date: Wed, 26 Apr 2017 11:31:03 +0000 Subject: [PATCH] Adding PYTHON_ENABLE option This option will be removed, once we confirmed tox/python testing code works fine and functest trigger has changed from 'run.sh' to 'tox'. Signed-off-by: Ryota MIBU Signed-off-by: Carlos Goncalves Change-Id: Ia4421f6e39a415bd7b6212af612249deb482e7af --- tests/run.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/run.sh b/tests/run.sh index d97a5c9c..7f95a8a4 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -31,6 +31,7 @@ DOCTOR_PROJECT=doctor #TODO: change back to `_member_` when JIRA DOCTOR-55 is done DOCTOR_ROLE=admin PROFILER_TYPE=${PROFILER_TYPE:-none} +PYTHON_ENABLE=${PYTHON_ENABLE:-false} TOP_DIR=$(cd $(dirname "$0") && pwd) @@ -457,6 +458,13 @@ cleanup() { # Main process +if $PYTHON_ENABLE; then + cd $TOP_DIR + echo "executing tox..." + tox + exit $? +fi + echo "Note: doctor/tests/run.sh has been executed." git log --oneline -1 || true # ignore even you don't have git installed -- 2.16.6