Skip to content

Commit 85b61c8

Browse files
committed
Extend python run_tests_matrix timeout from 3600s to 7200s
1 parent 4112b53 commit 85b61c8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tools/internal_ci/windows/pull_request/grpc_basictests_python.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ action {
2626

2727
env_vars {
2828
key: "RUN_TESTS_FLAGS"
29-
value: "-f basictests windows python -j 1 --inner_jobs 8 --max_time=5400"
29+
value: "-f basictests windows python -j 1 --inner_jobs 8 --max_time=7200"
3030
}

tools/run_tests/run_tests_matrix.py

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
# C/C++ tests can take long time
3434
_CPP_RUNTESTS_TIMEOUT = 6 * 60 * 60
3535

36+
# Python tests can take long time
37+
_PYTHON_RUNTESTS_TIMEOUT = 2 * 60 * 60
38+
3639
# Set timeout high for ObjC for Cocoapods to install pods
3740
_OBJC_RUNTESTS_TIMEOUT = 4 * 60 * 60
3841

@@ -278,6 +281,7 @@ def _create_test_jobs(extra_args=[], inner_jobs=_DEFAULT_INNER_JOBS):
278281
labels=["basictests", "multilang"],
279282
extra_args=extra_args + ["--report_multi_target"],
280283
inner_jobs=inner_jobs,
284+
timeout_seconds=_PYTHON_RUNTESTS_TIMEOUT,
281285
)
282286

283287
# ARM64 Linux Python tests

0 commit comments

Comments
 (0)