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 22dead7 commit 43fb6adCopy full SHA for 43fb6ad
.travis.yml
@@ -7,12 +7,13 @@ php:
7
- hhvm
8
9
before_script:
10
- - composer self-update
11
- - composer install --no-interaction --prefer-source --dev
+ - travis_retry composer self-update
+ - travis_retry composer install --no-interaction --prefer-source --dev
12
- mkdir -p build/logs
13
14
script:
15
- - vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
+ - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit --verbose; fi;'
16
+ - bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml; fi;'
17
18
after_success:
19
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "5.5" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
0 commit comments