Remove code-coverage logging from PHPUnit config

This commit is contained in:
Ben Ramsey
2016-02-13 20:28:50 -06:00
parent e3b0f62e3c
commit 47964f2cca
2 changed files with 1 additions and 9 deletions
-8
View File
@@ -10,12 +10,4 @@
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage" title="Ramsey\Uuid"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml"
logIncompleteSkipped="false"/>
</logging>
</phpunit>
+1 -1
View File
@@ -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}