summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-08-15 00:20:20 +0100
committerGreg Roach <fisharebest@gmail.com>2016-08-15 09:53:12 +0100
commit0f652a6dc8417dc91dbc30824abb4ed86923adef (patch)
treef9bcf540ec27022703c32b15e06046f068ca8d00 /.travis.yml
parentc2b6632288c58fea86bb3090eb2a85ee184fe65a (diff)
downloadwebtrees-0f652a6dc8417dc91dbc30824abb4ed86923adef.tar.gz
webtrees-0f652a6dc8417dc91dbc30824abb4ed86923adef.tar.bz2
webtrees-0f652a6dc8417dc91dbc30824abb4ed86923adef.zip
Travis fails with hhvm/coverage
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 310f2e7c45..1b5cb3b088 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,10 +20,10 @@ cache:
before_script:
- travis_retry composer config github-oauth.github.com "${GITHUB_OAUTH_TOKEN}"
- - cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp/
- - phpenv config-rm xdebug.ini
+ - if [ "$(phpenv global)" != "hhvm" ]; then cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp/; fi
+ - if [ "$(phpenv global)" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi
- travis_retry composer update
- - phpenv config-add /tmp/xdebug.ini
+ - if [ "$(phpenv global)" != "hhvm" ]; then phpenv config-add /tmp/xdebug.ini; fi
script:
- vendor/bin/phpunit --coverage-clover tests/clover.xml