Skip to content

Commit dfd1586

Browse files
Takashi Matsuoleahecole
andauthored
fix(jobs): bump the timeout and retry 2 times (GoogleCloudPlatform#4855)
fixes GoogleCloudPlatform#4827 Co-authored-by: Leah E. Cole <[email protected]>
1 parent fe26b3c commit dfd1586

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jobs/v3/api_client/email_alert_search_sample_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ def retry_delay():
3131
yield 10
3232

3333

34+
@pytest.mark.flaky(max_runs=2, min_passes=1)
3435
def test_email_alert_search_sample(company_name, capsys):
3536

36-
@backoff.on_exception(retry_delay, AssertionError, max_time=420)
37+
@backoff.on_exception(retry_delay, AssertionError, max_time=600)
3738
def eventually_consistent_test():
3839
email_alert_search_sample.run_sample(company_name)
3940
out, _ = capsys.readouterr()

0 commit comments

Comments
 (0)