We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0666994 commit b742173Copy full SHA for b742173
.travis.yml
@@ -11,7 +11,9 @@ sudo: false
11
install:
12
- composer install --prefer-source --no-interaction
13
14
-script: ./vendor/bin/phpunit
+script:
15
+ - ./vendor/bin/phpunit --coverage-clover=coverage.clover
16
-after_script:
17
- - ./bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml
+after_success:
18
+ - wget https://scrutinizer-ci.com/ocular.phar
19
+ - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
0 commit comments