File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ checks:
25
25
fix_identation_4spaces : true
26
26
fix_doc_comments : true
27
27
tools :
28
+ external_code_coverage : true
28
29
php_code_sniffer :
29
30
config :
30
31
standard : PSR2
Original file line number Diff line number Diff line change @@ -27,13 +27,16 @@ matrix:
27
27
- php : nightly
28
28
29
29
before_install :
30
- - phpenv config-rm xdebug.ini || echo "xdebug not available";
31
30
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/framework-bundle "$SYMFONY_VERSION"; fi
32
31
- if [ "$COMPOSER_FLAGS" != "" ]; then composer update --prefer-dist --no-interaction --no-scripts $COMPOSER_FLAGS; fi;
33
32
34
33
install :
35
34
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-dist --no-interaction
36
35
37
36
script :
38
- - vendor/bin/phpunit
37
+ - vendor/bin/phpunit --coverage-clover=coverage.clover
39
38
- vendor/bin/phpstan analyse
39
+
40
+ after_script :
41
+ - wget https://scrutinizer-ci.com/ocular.phar
42
+ - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
You can’t perform that action at this time.
0 commit comments