We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 698599c commit 2f94927Copy full SHA for 2f94927
test/unified_format.py
@@ -1026,6 +1026,10 @@ def maybe_skip_test(self, spec):
1026
if "timeoutMS applied to entire download" in spec["description"]:
1027
self.skipTest("PyMongo's open_download_stream does not cap the stream's lifetime")
1028
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
+
1033
class_name = self.__class__.__name__.lower()
1034
description = spec["description"].lower()
1035
if "csot" in class_name:
0 commit comments