diff --git a/phpunit.xml.dist b/phpunit.xml.dist index fe01ccd..0d65ba5 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -10,12 +10,4 @@ ./src - - - - - diff --git a/util/run-tests.sh b/util/run-tests.sh index c63054c..e699002 100755 --- a/util/run-tests.sh +++ b/util/run-tests.sh @@ -33,7 +33,7 @@ commands[2]="cd ${TRAVIS_BUILD_DIR}" commands[3]="composer install --no-interaction --prefer-dist" commands[4]="./vendor/bin/parallel-lint src tests" commands[5]="./vendor/bin/phpcs src tests --standard=psr2 -sp" -commands[6]="./vendor/bin/phpunit --verbose" +commands[6]="./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml" printf -v command "%s && " "${commands[@]}" command=${command::-4}