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
This commit is contained in:
parent
91185a93dc
commit
9d17408f1d
|
@ -14,12 +14,15 @@ cache:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
# Deactivate xdebug
|
# Deactivate xdebug
|
||||||
- phpenv config-rm xdebug.ini
|
- if [[ $TRAVIS_PHP_VERSION <> nightly ]]; then phpenv config-rm xdebug.ini; fi
|
||||||
- composer install --ignore-platform-reqs
|
- composer install --ignore-platform-reqs
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./vendor/bin/phpunit --color=always --coverage-text
|
- ./vendor/bin/phpunit --color=always --coverage-text
|
||||||
|
|
||||||
|
allow_failures:
|
||||||
|
- php: nightly
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue