From 6855923b37ff5a75bc7165bd855854ace395d9f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 2 Sep 2016 14:37:40 +0200 Subject: [PATCH] removing the --testdox report for phpunit execution This should improve readability on which test failed. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eeec0d2a7..5f67ba67e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,8 +13,8 @@ before_script: test:php-5.6: stage: test image: chill/ci-image:php-5.6 - script: phpunit --testdox + script: phpunit test:php-7: stage: test image: chill/ci-image:php-7 - script: phpunit --testdox + script: phpunit