Merge "Adding PYTHON_ENABLE option"
authorCarlos Goncalves <carlos.goncalves@neclab.eu>
Wed, 31 May 2017 07:50:33 +0000 (07:50 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Wed, 31 May 2017 07:50:33 +0000 (07:50 +0000)
tests/run.sh

index c21c3fd..daf2394 100755 (executable)
@@ -30,6 +30,7 @@ DOCTOR_PW=doctor
 DOCTOR_PROJECT=doctor
 DOCTOR_ROLE=_member_
 PROFILER_TYPE=${PROFILER_TYPE:-none}
+PYTHON_ENABLE=${PYTHON_ENABLE:-false}
 
 TOP_DIR=$(cd $(dirname "$0") && pwd)
 
@@ -480,6 +481,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