diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh index 039daf00e4..a173420797 100755 --- a/core/scripts/run-tests.sh +++ b/core/scripts/run-tests.sh @@ -148,10 +148,12 @@ exit(SIMPLETEST_SCRIPT_EXIT_SUCCESS); } -if (!Composer::upgradePHPUnitCheck(Version::id())) { - simpletest_script_print_error("PHPUnit testing framework version 10 or greater is required when running on PHP 8.1 or greater. Run the command 'composer run-script drupal-phpunit-upgrade' in order to fix this."); - exit(SIMPLETEST_SCRIPT_EXIT_FAILURE); -} +simpletest_script_print("PHP version: " . phpversion()); +simpletest_script_print("PHPUnit version: " . Version::id()); +//if (!Composer::upgradePHPUnitCheck(Version::id())) { +// simpletest_script_print_error("PHPUnit testing framework version 10 or greater is required when running on PHP 8.1 or greater. Run the command 'composer run-script drupal-phpunit-upgrade' in order to fix this."); +// exit(SIMPLETEST_SCRIPT_EXIT_FAILURE); +//} $test_list = simpletest_script_get_test_list();