From 9d17408f1d212cdc42b027d8c59563886de6f0cc Mon Sep 17 00:00:00 2001 From: MarkBaker Date: Sun, 9 Aug 2020 14:26:44 +0200 Subject: [PATCH] xdebug isn't built into the nightly PHP, so we'll get an error if we try to remove it; nightly should also be allow failures untilany identified issues are resolved --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b22f6a26..95ba404d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,12 +14,15 @@ cache: before_script: # Deactivate xdebug - - phpenv config-rm xdebug.ini + - if [[ $TRAVIS_PHP_VERSION <> nightly ]]; then phpenv config-rm xdebug.ini; fi - composer install --ignore-platform-reqs script: - ./vendor/bin/phpunit --color=always --coverage-text +allow_failures: + - php: nightly + jobs: include: