From 3355bf2a7c7f98cb36f044114fd6db6a6f56b1e7 Mon Sep 17 00:00:00 2001 From: Alexander Popel Date: Mon, 13 Jul 2026 12:39:18 +0300 Subject: [PATCH] ci: increase test server timeout --- ci/run-integration-tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run-integration-tests.ps1 b/ci/run-integration-tests.ps1 index 683a6da..3d81095 100644 --- a/ci/run-integration-tests.ps1 +++ b/ci/run-integration-tests.ps1 @@ -90,7 +90,7 @@ try { # parent -d directives, so raise max_execution_time by appending to # the loaded php.ini directly. Last directive wins on PHP ini parse. $phpIni = (php -r "echo php_ini_loaded_file();").Trim() - Add-Content -Path $phpIni -Value "`nmax_execution_time=120" + Add-Content -Path $phpIni -Value "`nmax_execution_time=300" # Start-Process with -RedirectStandard* writes directly to disk — # unlike PowerShell jobs, which drop native-process stderr. $server = Start-Process -FilePath "php" `