From 3275c5abd1c3456ddd741fbe5952c9b57b6aa7cb Mon Sep 17 00:00:00 2001 From: Christopher Allford Date: Thu, 12 Nov 2020 14:46:39 -0800 Subject: [PATCH] Fixed broken code coverage --- tests/bin/phpunit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bin/phpunit.sh b/tests/bin/phpunit.sh index dc8326e22b8..dac66c29273 100755 --- a/tests/bin/phpunit.sh +++ b/tests/bin/phpunit.sh @@ -5,7 +5,7 @@ if [[ ${RUN_PHPCS} == 1 ]] || [[ ${RUN_E2E} == 1 ]]; then fi if [[ ${RUN_CODE_COVERAGE} == 1 ]]; then - phpdbg ./vendor/bin/phpunit -d memory_limit=-1 -c phpunit.xml --coverage-clover=coverage.clover --exclude-group=timeout $@ + phpdbg -qrr ./vendor/bin/phpunit -d memory_limit=-1 -c phpunit.xml --coverage-clover=coverage.clover --exclude-group=timeout $@ else vendor/bin/phpunit -c phpunit.xml $@ fi