Fixed broken code coverage

This commit is contained in:
Christopher Allford 2020-11-12 14:46:39 -08:00
parent a95b384f08
commit 3275c5abd1
1 changed files with 1 additions and 1 deletions

View File

@ -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