Skip to content

Commit

Permalink
Fixing coverage options
Browse files Browse the repository at this point in the history
  • Loading branch information
REBELinBLUE committed Oct 25, 2017
1 parent 04eca52 commit bf71590
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ language: php
php:
- 5.6
- 7.0
- 7.1
- 7.1.0
- 7.2

env:
Expand All @@ -18,8 +18,9 @@ cache:
- $TRAVIS_BUILD_DIR/vendor

before_install:
- phpenv config-rm xdebug.ini
- travis_retry composer self-update
- if [[ "$TRAVIS_PHP_VERSION" != "7.1.0" ]]; then
phpenv config-rm xdebug.ini;
fi

install:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist --no-suggest
Expand All @@ -31,7 +32,10 @@ script:
- make phpunit-ci

after_success:
- bash <(curl -s https://codecov.io/bash)
- |
if [[ -f coverage.xml ]]; then
bash <(curl -s https://codecov.io/bash)
fi
notifications:
email: false

0 comments on commit bf71590

Please sign in to comment.