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.
2 parents b26cc82 + c4c8627 commit 5bf2286Copy full SHA for 5bf2286
.travis.yml
@@ -8,16 +8,18 @@ matrix:
8
- php: 5.4
9
- php: 5.5
10
- php: 5.6
11
+ env: WITH_COVERAGE=true
12
- php: 7
13
- php: hhvm
14
allow_failures:
15
16
17
before_install:
18
+ - if [[ "$WITH_COVERAGE" != "true" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi
19
- composer selfupdate
20
21
install:
22
- travis_retry composer install --no-interaction --prefer-source
23
24
script:
- - vendor/bin/phpunit --coverage-text
25
+ - if [[ "$WITH_COVERAGE" == "true" ]]; then vendor/bin/phpunit --coverage-text; else vendor/bin/phpunit; fi
0 commit comments