Skip to content

Commit 1ab258b

Browse files
committed
Address integration test jobs timeouts
1 parent 6ea22ca commit 1ab258b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tests/ci/ci.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,9 @@ def _run_test(job_name: str, run_command: str) -> int:
911911
if retcode != 0:
912912
print(f"Run action failed for: [{job_name}] with exit code [{retcode}]")
913913
if process.timeout_exceeded:
914-
print(f"Job timed out: [{job_name}] exit code [{retcode}]")
914+
print(
915+
f"Job timed out: [{job_name}], timeout [{timeout}], exit code [{retcode}]"
916+
)
915917
assert JobReport.exist(), "JobReport real or dummy must be present"
916918
jr = JobReport.load()
917919
if jr.dummy:

tests/ci/ci_config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ class CI:
391391
),
392392
JobNames.INTEGRATION_TEST_TSAN: CommonJobConfigs.INTEGRATION_TEST.with_properties(
393393
required_builds=[BuildNames.PACKAGE_TSAN],
394+
timeout=10800,
394395
num_batches=8,
395396
),
396397
JobNames.INTEGRATION_TEST_AARCH64_DISTRIBUTED_PLAN: CommonJobConfigs.INTEGRATION_TEST.with_properties(
@@ -401,6 +402,7 @@ class CI:
401402
JobNames.INTEGRATION_TEST: CommonJobConfigs.INTEGRATION_TEST.with_properties(
402403
required_builds=[BuildNames.PACKAGE_RELEASE],
403404
num_batches=8,
405+
timeout=10800,
404406
# release_only=True,
405407
),
406408
JobNames.INTEGRATION_TEST_FLAKY: CommonJobConfigs.INTEGRATION_TEST.with_properties(

0 commit comments

Comments
 (0)