Skip to content
Merged
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
6 changes: 6 additions & 0 deletions test/asynchronous/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,12 @@ def maybe_skip_test(self, spec):
self.skipTest("PYTHON-5170 tests are flakey")
if "Driver extends timeout while streaming" in spec["description"] and not _IS_SYNC:
self.skipTest("PYTHON-5174 tests are flakey")
if (
"inserting _id with type null via clientBulkWrite" in spec["description"]
or "commitTransaction fails after Interrupted" in spec["description"]
or "commit is not retried after MaxTimeMSExpired error" in spec["description"]
) and async_client_context.serverless:
self.skipTest("PYTHON-5326 known serverless failures")

class_name = self.__class__.__name__.lower()
description = spec["description"].lower()
Expand Down
6 changes: 6 additions & 0 deletions test/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,12 @@ def maybe_skip_test(self, spec):
self.skipTest("PYTHON-5170 tests are flakey")
if "Driver extends timeout while streaming" in spec["description"] and not _IS_SYNC:
self.skipTest("PYTHON-5174 tests are flakey")
if (
"inserting _id with type null via clientBulkWrite" in spec["description"]
or "commitTransaction fails after Interrupted" in spec["description"]
or "commit is not retried after MaxTimeMSExpired error" in spec["description"]
) and client_context.serverless:
self.skipTest("PYTHON-5326 known serverless failures")

class_name = self.__class__.__name__.lower()
description = spec["description"].lower()
Expand Down
Loading