From 7a4cd199ced68f440dd9e826c76c15a9e1d571ac Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Mon, 18 Nov 2024 10:31:41 -0800 Subject: [PATCH] PYTHON-4356 Unskip spec tests for agg $out --- test/asynchronous/unified_format.py | 9 --------- test/unified_format.py | 9 --------- 2 files changed, 18 deletions(-) diff --git a/test/asynchronous/unified_format.py b/test/asynchronous/unified_format.py index 81feed4d4c..ea61ecbe99 100644 --- a/test/asynchronous/unified_format.py +++ b/test/asynchronous/unified_format.py @@ -545,15 +545,6 @@ def maybe_skip_test(self, spec): or "Cancel server check" in spec["description"] ): self.skipTest("MMAPv1 does not support retryWrites=True") - if ( - "AsyncDatabase-level aggregate with $out includes read preference for 5.0+ server" - in spec["description"] - ): - if async_client_context.version[0] == 8: - self.skipTest("waiting on PYTHON-4356") - if "Aggregate with $out includes read preference for 5.0+ server" in spec["description"]: - if async_client_context.version[0] == 8: - self.skipTest("waiting on PYTHON-4356") if "Client side error in command starting transaction" in spec["description"]: self.skipTest("Implement PYTHON-1894") if "timeoutMS applied to entire download" in spec["description"]: diff --git a/test/unified_format.py b/test/unified_format.py index 395d40b2d1..1bcd750aef 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -543,15 +543,6 @@ def maybe_skip_test(self, spec): or "Cancel server check" in spec["description"] ): self.skipTest("MMAPv1 does not support retryWrites=True") - if ( - "Database-level aggregate with $out includes read preference for 5.0+ server" - in spec["description"] - ): - if client_context.version[0] == 8: - self.skipTest("waiting on PYTHON-4356") - if "Aggregate with $out includes read preference for 5.0+ server" in spec["description"]: - if client_context.version[0] == 8: - self.skipTest("waiting on PYTHON-4356") if "Client side error in command starting transaction" in spec["description"]: self.skipTest("Implement PYTHON-1894") if "timeoutMS applied to entire download" in spec["description"]: