From 9ccde9b72459e20110883e8929ae7a3bef1d28eb Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Tue, 28 Mar 2017 23:30:15 +0300 Subject: [PATCH] Do not use the Fork Helper for tests For nearly six months, the tests are falling regularly. Fork is the only dependence, which is constantly fails tests In the future we will deprecate the Fork Helper in favor of ReactPHP, Promises, etc. Cc: @duncan3dc --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c1cf26e1..b1ad1fbea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,9 +47,7 @@ before_install: - sudo ln -s /home/travis/.phpenv/versions/$(phpenv version-name)/bin/php-config /usr/bin/ - export PHP_MAJOR="$(echo $TRAVIS_PHP_VERSION | cut -d '.' -f 1,2)" - if [[ ! -z "${GH_TOKEN}" ]]; then composer config github-oauth.github.com ${GH_TOKEN}; echo "Configured Github token"; fi; - # Install dev-dependencies - travis_retry composer install --prefer-dist --no-interaction --ignore-platform-reqs - - travis_retry composer require duncan3dc/fork-helper:$(if [[ "${PHP_MAJOR:0:1}" = "7" ]]; then echo "^2.0"; else echo "^1.0"; fi) --ignore-platform-reqs install: - ( bash tests/_ci/install_prereqs_$PHP_MAJOR.sh )