Skip to content

Commit

Permalink
fix builds without xdebug config ini and fix travis indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrawley committed Jan 30, 2018
1 parent 72e754d commit 3253b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -39,7 +39,7 @@ matrix:
- php: nightly
allow_failures:
- env:
- ENABLE_CODE_COVERAGE="true"
- ENABLE_CODE_COVERAGE="true"
- env:
- SYMFONY_VERSION=dev-master
- STABILITY=dev
Expand All @@ -49,7 +49,7 @@ before_install:
- if [[ "$SYMFONY_VERSION" != "" ]]; then travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update $COMPOSER_FLAGS; fi;
- if [[ "$DEPENDENCIES" != "" ]]; then travis_retry composer require ${DEPENDENCIES} --no-update $COMPOSER_FLAGS; fi;
- if [[ "$STABILITY" != "" ]]; then composer config minimum-stability $STABILITY; fi
- if [[ "$ENABLE_CODE_COVERAGE" != "true" && "$TRAVIS_EVENT_TYPE" != "cron" ]]; then phpenv config-rm xdebug.ini; fi;
- if [[ "$ENABLE_CODE_COVERAGE" != "true" && "$TRAVIS_EVENT_TYPE" != "cron" ]]; then phpenv config-rm xdebug.ini || true; fi;
- if [[ "$ENABLE_CODE_COVERAGE" != "true" && "$TRAVIS_EVENT_TYPE" != "cron" ]]; then travis_retry composer require satooshi/php-coveralls:^1.0 --no-update $COMPOSER_FLAGS; fi;

install:
Expand Down

0 comments on commit 3253b6d

Please sign in to comment.