File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ matrix:
1010 - php : 5.4
1111 - php : 5.5
1212 - php : 5.6
13- env : SCRUTINIZER=1
13+ env : SCRUTINIZER=1 PHPUNIT_FLAGS="--coverage-clover=coverage.xml"
1414 - php : 7.0
1515 env : COMPOSER_FLAGS="--prefer-lowest"
1616 - php : 7.1
@@ -26,14 +26,15 @@ cache:
2626 - $HOME/.composer/cache
2727
2828before_script :
29+ - if [[ SCRUTINIZER != '1' ]]; then phpenv config-rm xdebug.ini || true; fi
2930 - composer self-update
3031 - composer update $COMPOSER_FLAGS --prefer-dist
3132
3233script :
3334 - stty cols 120
3435 - if [ "$CS_FIXER" == 1 ]; then wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.13.1/php-cs-fixer.phar && php php-cs-fixer.phar fix --dry-run --diff; fi
3536 - mkdir -p build/logs
36- - ./vendor/bin/phpunit --coverage-clover=coverage.xml
37+ - ./vendor/bin/phpunit $PHPUNIT_FLAGS
3738
3839after_script :
3940 - if [ "$SCRUTINIZER" == 1 ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.xml; fi
You can’t perform that action at this time.
0 commit comments