diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-08-15 00:20:20 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-08-15 09:53:12 +0100 |
| commit | 0f652a6dc8417dc91dbc30824abb4ed86923adef (patch) | |
| tree | f9bcf540ec27022703c32b15e06046f068ca8d00 /.travis.yml | |
| parent | c2b6632288c58fea86bb3090eb2a85ee184fe65a (diff) | |
| download | webtrees-0f652a6dc8417dc91dbc30824abb4ed86923adef.tar.gz webtrees-0f652a6dc8417dc91dbc30824abb4ed86923adef.tar.bz2 webtrees-0f652a6dc8417dc91dbc30824abb4ed86923adef.zip | |
Travis fails with hhvm/coverage
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 6 |
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 |
