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 5dccf68 commit 9c48c0aCopy full SHA for 9c48c0a
.travis.yml
@@ -35,7 +35,8 @@ install:
35
- if [ "$deps" == low ]; then travis_retry composer update --no-interaction --prefer-dist --prefer-lowest; fi;
36
37
script:
38
- - vendor/bin/phpunit --coverage-clover=coverage.clover --exclude-group integration
+ - if [[ "$TRAVIS_PHP_VERSION" == '7.1' && "$deps" != low ]]; then vendor/bin/phpunit --coverage-clover=coverage.clover --exclude-group integration; fi;
39
+ - if [[ "$TRAVIS_PHP_VERSION" != '7.1' || "$deps" == low ]]; then vendor/bin/phpunit --exclude-group integration; fi;
40
41
after_script:
42
- if [[ "$TRAVIS_PHP_VERSION" == '7.1' && "$deps" != low ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi;
0 commit comments