From e9733514af6e3fff2f72853b1d8a9ef9114af9d0 Mon Sep 17 00:00:00 2001 From: James Allen Date: Fri, 1 Dec 2017 10:03:42 +0000 Subject: [PATCH] Fail on failing module acceptance tests --- services/web/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/web/Makefile b/services/web/Makefile index d106aa6b9d..44017629d1 100644 --- a/services/web/Makefile +++ b/services/web/Makefile @@ -59,6 +59,8 @@ test_acceptance_app_run: docker-shared.yml docker-compose ${DOCKER_COMPOSE_FLAGS} exec -T test_acceptance npm -q run test:acceptance -- ${MOCHA_ARGS} test_acceptance_modules: docker-shared.yml + # Break and error on any module failure + set -e; \ for dir in modules/*; \ do \ if [ -e $$dir/Makefile ]; then \