diff options
Diffstat (limited to 'docker/run_tests.sh')
-rwxr-xr-x | docker/run_tests.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh index d6faff23a..4fd505bbd 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -129,7 +129,12 @@ function run_test(){ "promise") info "Running PROMISE test case..." # TODO - esac + ;; + "doctor") + info "Running Doctor test..." + python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py + ;; + esac } |