From 5d9ccf7fd1c5a999de7ee203f292fb55d562215d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 5 Sep 2022 21:16:10 +0000 Subject: [PATCH] Tests: Temporarily skip the test for recommended PHP version in `readme.html`. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This test verifies that the WordPress `readme.html` file recommends a PHP version that is actively supported. However, WordPress currently still recommends PHP 7.4 due to PHP 8.0/8.1 compatibility not being fully achieved, even though PHP 7.4 is end-of-life. As things were, the assertion in the test was commented out, leading to this test being marked as “risky” for not performing any assertions. Instead, let’s skip the test with a clear skip notification. Follow-up to [52260]. Props jrf. See #55652. Built from https://develop.svn.wordpress.org/trunk@54074 git-svn-id: http://core.svn.wordpress.org/trunk@53633 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 2d3f37f60d..59fd90846f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54073'; +$wp_version = '6.1-alpha-54074'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.