From 47964f2cca3876454904c807831ebeb5650fb264 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Sat, 13 Feb 2016 20:28:50 -0600 Subject: [PATCH] Remove code-coverage logging from PHPUnit config --- phpunit.xml.dist | 8 -------- util/run-tests.sh | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) 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}