Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions test/asynchronous/test_client_bulk_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
from pymongo.errors import (
ClientBulkWriteException,
DocumentTooLarge,
InvalidOperation,
NetworkTimeout,
)
from pymongo.operations import *
Expand All @@ -39,7 +38,6 @@
async_client_context,
unittest,
)
from test.asynchronous.utils import flaky
from test.utils_shared import (
OvertCommandListener,
)
Expand Down Expand Up @@ -634,7 +632,7 @@ async def asyncSetUp(self):

@async_client_context.require_version_min(8, 0, 0, -24)
@async_client_context.require_failCommand_fail_point
@flaky(reason="PYTHON-5290", max_runs=3, affects_cpython_linux=True)
@async_client_context.require_standalone
async def test_timeout_in_multi_batch_bulk_write(self):
Comment on lines 633 to 636
if sys.platform != "linux" and "CI" in os.environ:
self.skipTest("PYTHON-3522 CSOT test runs too slow on Windows and MacOS")
Expand Down
4 changes: 1 addition & 3 deletions test/test_client_bulk_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
from pymongo.errors import (
ClientBulkWriteException,
DocumentTooLarge,
InvalidOperation,
NetworkTimeout,
)
from pymongo.operations import *
Expand All @@ -39,7 +38,6 @@
client_context,
unittest,
)
from test.utils import flaky
from test.utils_shared import (
OvertCommandListener,
)
Expand Down Expand Up @@ -630,7 +628,7 @@ def setUp(self):

@client_context.require_version_min(8, 0, 0, -24)
@client_context.require_failCommand_fail_point
@flaky(reason="PYTHON-5290", max_runs=3, affects_cpython_linux=True)
@client_context.require_standalone
def test_timeout_in_multi_batch_bulk_write(self):
Comment on lines 629 to 632
if sys.platform != "linux" and "CI" in os.environ:
self.skipTest("PYTHON-3522 CSOT test runs too slow on Windows and MacOS")
Expand Down
Loading