We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b01399 commit 27f58cbCopy full SHA for 27f58cb
.scrutinizer.yml
@@ -1,6 +1,8 @@
1
filter:
2
excluded_paths:
3
- tests/*
4
+tools:
5
+ external_code_coverage: true
6
build:
7
nodes:
8
analysis:
.travis.yml
@@ -12,7 +12,11 @@ before_script:
12
- travis_retry composer self-update
13
- travis_retry composer install --no-interaction
14
15
-script: ./vendor/bin/phpunit
+script: ./vendor/bin/phpunit --coverage-clover=coverage.clover
16
+
17
+after_script:
18
+ - wget https://scrutinizer-ci.com/ocular.phar
19
+ - php ocular.phar code-coverage:upload --access-token=SCRUTINIZER_TOKEN --format=php-clover coverage.clover
20
21
branches:
22
only:
0 commit comments