Skip to content

Commit 1a7c38f

Browse files
committed
increase stateful tsan timeout, format ci_config.py
1 parent eb2ff36 commit 1a7c38f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/ci/ci_config.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@ class CI:
275275
required_builds=[BuildNames.PACKAGE_ASAN]
276276
),
277277
JobNames.STATEFUL_TEST_TSAN: CommonJobConfigs.STATEFUL_TEST.with_properties(
278-
required_builds=[BuildNames.PACKAGE_TSAN]
278+
required_builds=[BuildNames.PACKAGE_TSAN],
279+
timeout=2 * 3600,
279280
),
280281
JobNames.STATEFUL_TEST_MSAN: CommonJobConfigs.STATEFUL_TEST.with_properties(
281282
required_builds=[BuildNames.PACKAGE_MSAN]
@@ -397,7 +398,8 @@ class CI:
397398
required_builds=[BuildNames.PACKAGE_DEBUG], pr_only=True
398399
),
399400
JobNames.INTEGRATION_TEST_ASAN: CommonJobConfigs.INTEGRATION_TEST.with_properties(
400-
required_builds=[BuildNames.PACKAGE_ASAN], num_batches=4,
401+
required_builds=[BuildNames.PACKAGE_ASAN],
402+
num_batches=4,
401403
timeout=9000, # the job timed out with default value (7200)
402404
),
403405
JobNames.INTEGRATION_TEST_ASAN_OLD_ANALYZER: CommonJobConfigs.INTEGRATION_TEST.with_properties(
@@ -419,7 +421,7 @@ class CI:
419421
JobNames.INTEGRATION_TEST: CommonJobConfigs.INTEGRATION_TEST.with_properties(
420422
required_builds=[BuildNames.PACKAGE_RELEASE],
421423
num_batches=4,
422-
#release_only=True,
424+
# release_only=True,
423425
timeout=12000, # the job timed out with default value (7200)
424426
),
425427
JobNames.INTEGRATION_TEST_FLAKY: CommonJobConfigs.INTEGRATION_TEST.with_properties(
@@ -558,11 +560,11 @@ class CI:
558560
),
559561
JobNames.SIGN_RELEASE: JobConfig(
560562
required_builds=[BuildNames.PACKAGE_RELEASE],
561-
runner_type=Runners.STYLE_CHECKER
563+
runner_type=Runners.STYLE_CHECKER,
562564
),
563565
JobNames.SIGN_AARCH64: JobConfig(
564566
required_builds=[BuildNames.PACKAGE_AARCH64],
565-
runner_type=Runners.STYLE_CHECKER_ARM
567+
runner_type=Runners.STYLE_CHECKER_ARM,
566568
),
567569
}
568570

0 commit comments

Comments
 (0)