From a3bdc133ca497c2e966e41a283c1b712d045f7fe Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Mon, 18 Nov 2024 12:17:33 -0800 Subject: [PATCH] PYTHON-4356 Unskip spec tests for agg $out (#2008) --- 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 81feed4d4..ea61ecbe9 100644 --- a/test/asynchronous/unified_format.py +++ b/test/asynchronous/unified_format.py @@ -545,15 +545,6 @@ class UnifiedSpecTestMixinV1(AsyncIntegrationTest): 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 395d40b2d..1bcd750ae 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -543,15 +543,6 @@ class UnifiedSpecTestMixinV1(IntegrationTest): 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"]: