Skip to content

Commit 78bcd99

Browse files
committed
add more retries
1 parent 22b8373 commit 78bcd99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/asynchronous/test_client_bulk_write.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ async def asyncSetUp(self):
627627

628628
@async_client_context.require_version_min(8, 0, 0, -24)
629629
@async_client_context.require_failCommand_fail_point
630-
@flaky(max_runs=3, affects_cpython_linux=True)
630+
@flaky(max_runs=3 if sys.platform == "linux" else 5, affects_cpython_linux=True)
631631
async def test_timeout_in_multi_batch_bulk_write(self):
632632
_OVERHEAD = 500
633633

test/test_client_bulk_write.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ def setUp(self):
623623

624624
@client_context.require_version_min(8, 0, 0, -24)
625625
@client_context.require_failCommand_fail_point
626-
@flaky(max_runs=3, affects_cpython_linux=True)
626+
@flaky(max_runs=3 if sys.platform == "linux" else 5, affects_cpython_linux=True)
627627
def test_timeout_in_multi_batch_bulk_write(self):
628628
_OVERHEAD = 500
629629

0 commit comments

Comments
 (0)