Update PHPUnit location

This commit is contained in:
Gerhard 2019-03-19 13:47:26 +02:00
parent dc99c30772
commit d391e87fc7
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ if [[ ${RUN_PHPCS} == 1 ]] || [[ ${RUN_E2E} == 1 ]]; then
fi
if [[ ${RUN_CODE_COVERAGE} == 1 ]]; then
phpdbg -qrr phpunit -d memory_limit=-1 -c phpunit.xml --coverage-clover=coverage.clover --exclude-group=timeout
phpdbg -qrr $HOME/.composer/vendor/phpunit/phpunit/phpunit -d memory_limit=-1 -c phpunit.xml --coverage-clover=coverage.clover --exclude-group=timeout
else
phpunit -c phpunit.xml
$HOME/.composer/vendor/phpunit/phpunit/phpunit -c phpunit.xml
fi