Skip to content

Commit 3a89062

Browse files
committed
Travis: Output code coverage in text form as scrutinizer doesn't update fast
1 parent 3693138 commit 3a89062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ before_script:
1717
- CODE_COVERAGE=`echo $TRAVIS_PHP_VERSION | grep -v "hhvm" | wc -l`
1818

1919
script:
20-
- if [ "$CODE_COVERAGE" = "1" ]; then php vendor/bin/phpunit --verbose --coverage-clover=coverage.clover; else php vendor/bin/phpunit --verbose; fi
20+
- if [ "$CODE_COVERAGE" = "1" ]; then php vendor/bin/phpunit --verbose --coverage-text --coverage-clover=coverage.clover; else php vendor/bin/phpunit --verbose; fi
2121

2222
after_script:
2323
- if [ "$CODE_COVERAGE" = "1" ]; then wget "https://scrutinizer-ci.com/ocular.phar"; fi

0 commit comments

Comments
 (0)