From 88b592c6effe071beef76c0812a7589770e43452 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 27 Jan 2020 11:57:34 +0000 Subject: [PATCH] coverage as a separate step --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41ee7819..641079f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,6 @@ RUN mkdir -p data/config && \ echo === Installing === && php index.php && \ echo === Smoke Test === && php index.php get-page /post/list && \ echo === Unit Tests === && ./vendor/bin/phpunit --configuration tests/phpunit.xml && \ + echo === Coverage === && ./vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text && \ echo === Cleaning === && rm -rf data - #echo === Unit Tests === && ./vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text && \ CMD "/app/tests/docker-init.sh"