From 8ae4a7614cafa8625f8483ed2970a72059b657c6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 30 Sep 2020 13:12:03 +0000 Subject: [PATCH] Build/Test Tools: Comment out the `xdebug` group test run for PHP 8 for now. Xdebug supports PHP 8 only from version 3.0, which is not released yet. Once Xdebug 3.0 is released and included in the Docker image, this should be uncommented again. Follow-up to [48957], [49037]. See #50913, #50902. git-svn-id: https://develop.svn.wordpress.org/trunk@49074 602fd350-edb4-49c9-b593-d223f7449a82 --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ed845f57f9..42e5c76acc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,7 +63,9 @@ jobs: - docker-compose run --rm phpunit php ./vendor/bin/phpunit --verbose -c phpunit.xml.dist --group external-http - docker-compose run --rm phpunit php ./vendor/bin/phpunit --verbose -c phpunit.xml.dist --group restapi-jsclient # __fakegroup__ is excluded to force PHPUnit to ignore the settings in phpunit.xml.dist. - - LOCAL_PHP_XDEBUG=true docker-compose run --rm phpunit phpunit -v --group xdebug --exclude-group __fakegroup__ + # Xdebug supports PHP 8 only from version 3.0, which is not released yet. + # Once Xdebug 3.0 is released and included in the Docker image, this should be uncommented again. + # - LOCAL_PHP_XDEBUG=true docker-compose run --rm phpunit phpunit -v --group xdebug --exclude-group __fakegroup__ allow_failures: - env: LOCAL_PHP=8.0-fpm COMPOSER_INSTALL=true WP_TRAVISCI=test:php