Skip to content

Commit 2f94927

Browse files
authored
PYTHON-4182 Skip test_unpin_after_TransientTransactionError_error_on_abort on latest (#1508)
1 parent 698599c commit 2f94927

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/unified_format.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,6 +1026,10 @@ def maybe_skip_test(self, spec):
10261026
if "timeoutMS applied to entire download" in spec["description"]:
10271027
self.skipTest("PyMongo's open_download_stream does not cap the stream's lifetime")
10281028

1029+
if "unpin after TransientTransactionError error on abort" in spec["description"]:
1030+
if client_context.version[0] == 8:
1031+
self.skipTest("Skipping TransientTransactionError pending PYTHON-4182")
1032+
10291033
class_name = self.__class__.__name__.lower()
10301034
description = spec["description"].lower()
10311035
if "csot" in class_name:

0 commit comments

Comments
 (0)