summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile1
-rwxr-xr-xdocker/run_tests.sh7
2 files changed, 6 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 4a2d87bf6..69c2bd48f 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -74,4 +74,3 @@ ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img /home/op
RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
RUN curl -L https://get.rvm.io | bash -s stable
-RUN bash -c 'source /etc/profile.d/rvm.sh ; rvm autolibs enable ; rvm install 1.9.3 ; rvm use 1.9.3'
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
}