From 9a839d3635c84734ca3646c60a38a63f047d2e28 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 6 Jul 2026 10:25:05 -0500 Subject: [PATCH] PYTHON-5799 Skip TestExplicitTextEncryptionProse tests Skip pending support for the new query type. --- test/asynchronous/test_encryption.py | 1 + test/test_encryption.py | 1 + 2 files changed, 2 insertions(+) diff --git a/test/asynchronous/test_encryption.py b/test/asynchronous/test_encryption.py index 57acf5824e..f9094131d6 100644 --- a/test/asynchronous/test_encryption.py +++ b/test/asynchronous/test_encryption.py @@ -3314,6 +3314,7 @@ async def test_collection_name_collision(self): # https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/tests/README.md#27-text-explicit-encryption +@unittest.skip("PYTHON-5799 need to add support for the new query type") class TestExplicitTextEncryptionProse(AsyncEncryptionIntegrationTest): @async_client_context.require_no_standalone @async_client_context.require_version_min(8, 2, -1) diff --git a/test/test_encryption.py b/test/test_encryption.py index 3bb6e767b4..ba0236b42b 100644 --- a/test/test_encryption.py +++ b/test/test_encryption.py @@ -3296,6 +3296,7 @@ def test_collection_name_collision(self): # https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/tests/README.md#27-text-explicit-encryption +@unittest.skip("PYTHON-5799 need to add support for the new query type") class TestExplicitTextEncryptionProse(EncryptionIntegrationTest): @client_context.require_no_standalone @client_context.require_version_min(8, 2, -1)