From 3caf249d6538bfd58b7eb2d73ff361419ded7198 Mon Sep 17 00:00:00 2001 From: Jake Moshenko Date: Fri, 27 Feb 2015 17:17:52 -0500 Subject: [PATCH] Stop the tests early if there is a failure. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d201270b0..1eb07c760 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ RUN mkdir static/fonts static/ldn RUN venv/bin/python -m external_libraries # Run the tests -RUN TEST=true venv/bin/python -m unittest discover +RUN TEST=true venv/bin/python -m unittest -f discover VOLUME ["/conf/stack", "/var/log", "/datastorage", "/tmp", "/conf/etcd"]