From 1b908459c4f1b53fe2d2df76e1b5e162210614b1 Mon Sep 17 00:00:00 2001
From: Petr Shumilov
Date: Thu, 26 Mar 2026 18:18:48 +0300
Subject: [PATCH] Increase hard timeout for phpt tests
Signed-off-by: Petr Shumilov
---
tests/python/lib/kphp_run_once.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/python/lib/kphp_run_once.py b/tests/python/lib/kphp_run_once.py
index a61f430872..7ab0175967 100644
--- a/tests/python/lib/kphp_run_once.py
+++ b/tests/python/lib/kphp_run_once.py
@@ -156,7 +156,7 @@ def run_with_kphp_and_k2(self, runs_cnt=1, args=[]):
k2_node_bin = self.k2_bin
- cmd = [k2_node_bin, "run-once", "--image", os.path.join(self._kphp_build_tmp_dir, "component.so"), "--runs-count={}".format(runs_cnt), "--crypto", "--instance-cache", "--task-hard-timeout", "30"] + args
+ cmd = [k2_node_bin, "run-once", "--image", os.path.join(self._kphp_build_tmp_dir, "component.so"), "--runs-count={}".format(runs_cnt), "--crypto", "--instance-cache", "--task-hard-timeout", "600"] + args
env = os.environ.copy()
if "RUST_LOG" not in env: