From 214d4a9073bde171edaacca159b0ee5e6d0f0d2d Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Mon, 23 May 2022 13:30:13 +0000 Subject: [PATCH] Build/Test Tools: Temporarily skip MariaDB version test. TEMPORARY COMMIT. MariaDB version 10.2 is no longer supported as of 23 May 2022. This commit temporarily skips the version test. Why? To avoid test failures during this period, i.e. until the version is bummped and `readme.html` file changed. See #55791, [https://meta.trac.wordpress.org/ticket/5999 Meta5999]. git-svn-id: https://develop.svn.wordpress.org/trunk@53431 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/external-http/basic.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/phpunit/tests/external-http/basic.php b/tests/phpunit/tests/external-http/basic.php index 16bef21847..e34f4841ba 100644 --- a/tests/phpunit/tests/external-http/basic.php +++ b/tests/phpunit/tests/external-http/basic.php @@ -63,6 +63,13 @@ class Tests_External_HTTP_Basic extends WP_UnitTestCase { * @covers ::wp_remote_retrieve_body */ public function test_readme_mariadb_version() { + /* + * Temporary skip as MariaDB 10.2 is EOL as of 23 May 2022. + * See Trac #55791 and meta #6322. + * Once the version is bumped, revert this change. + */ + $this->markTestSkipped( 'Temporarily skip due to MariaDB 10.2 now EOL as of 23 May 2022. Remove this skip once version is bumped.' ); + // This test is designed to only run on trunk. $this->skipOnAutomatedBranches();