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 83cc80f commit 8bd5404Copy full SHA for 8bd5404
.travis.yml
@@ -6,16 +6,17 @@ php:
6
- 5.5
7
- 5.6
8
- 7.0
9
+ - 7.1
10
- hhvm
11
12
script:
13
- phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.clover
14
15
after_script:
- - wget https://scrutinizer-ci.com/ocular.phar
16
- - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
+ - if [ "$TRAVIS_PHP_VERSION" != "7.1" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
17
+ - if [ "$TRAVIS_PHP_VERSION" != "7.1" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
18
19
matrix:
20
allow_failures:
- - php: 7.0
21
+ - php: 7.1
22
- php: hhvm
0 commit comments