From 75f85d8153316068d05f27ff667c264144eb43f4 Mon Sep 17 00:00:00 2001 From: Dave Long <dave@longwaveconsulting.com> Date: Mon, 12 Feb 2024 10:54:32 +0000 Subject: [PATCH] Issue #3420765 by alexpott, mondrake: Remove new test timeout --- core/lib/Drupal/Core/Test/PhpUnitTestRunner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Test/PhpUnitTestRunner.php b/core/lib/Drupal/Core/Test/PhpUnitTestRunner.php index 3f4072f92bf5..f238cf4d3456 100644 --- a/core/lib/Drupal/Core/Test/PhpUnitTestRunner.php +++ b/core/lib/Drupal/Core/Test/PhpUnitTestRunner.php @@ -152,7 +152,7 @@ public function runCommand(array $unescaped_test_classnames, string $phpunit_fil } $process = new Process($command, \Drupal::root() . "/core", $process_environment_variables); - $process->setTimeout(300); + $process->setTimeout(NULL); $process->run(); $output = explode("\n", $process->getOutput()); $status = $process->getExitCode(); -- GitLab