From 1cba699cd9ec9e6c1e56b9dc3c4b7acffef82337 Mon Sep 17 00:00:00 2001 From: strtgbb <146047128+strtgbb@users.noreply.github.com> Date: Thu, 9 Apr 2026 08:39:31 -0400 Subject: [PATCH] increase timeout for targeted integration job --- ci/jobs/integration_test_job.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/jobs/integration_test_job.py b/ci/jobs/integration_test_job.py index bc4f8ed3fd01..fc2b8cd2ad52 100644 --- a/ci/jobs/integration_test_job.py +++ b/ci/jobs/integration_test_job.py @@ -537,7 +537,7 @@ def main(): # For targeted jobs, use a shorter session timeout to keep feedback fast. # If this timeout is exceeded but all completed tests have passed, the # targeted check will not fail solely because the session timed out. - session_timeout = 1200 + session_timeout = 2700 error_info = [] module_repeat_cnt = 1 @@ -646,7 +646,7 @@ def main(): is_flaky_check or is_bugfix_validation or is_targeted_check or info.is_local_run ): test_result_retries = Result.from_pytest_run( - command=f"{' '.join(failed_test_cases)} --report-log-exclude-logs-on-passed-tests --tb=short -n 1 --dist=loadfile --session-timeout=1200", + command=f"{' '.join(failed_test_cases)} --report-log-exclude-logs-on-passed-tests --tb=short -n 1 --dist=loadfile --session-timeout=2700", env=test_env, cwd="./tests/integration/", pytest_report_file=f"{temp_path}/pytest_retries.jsonl",