diff --git a/bindings/python/test/test_mongocrypt.py b/bindings/python/test/test_mongocrypt.py index 1160c7390..982c05109 100644 --- a/bindings/python/test/test_mongocrypt.py +++ b/bindings/python/test/test_mongocrypt.py @@ -507,6 +507,8 @@ def mongo_crypt_opts(): os.getenv("TEST_CRYPT_SHARED"), "this test requires TEST_CRYPT_SHARED=1" ) def test_crypt_shared(self): + if sys.platform == "darwin": + raise unittest.SkipTest("Skipping due to SERVER-101020") kms_providers = { "aws": {"accessKeyId": "example", "secretAccessKey": "example"}, "local": {"key": b"\x00" * 96}, @@ -638,6 +640,8 @@ def mongo_crypt_opts(): os.getenv("TEST_CRYPT_SHARED"), "this test requires TEST_CRYPT_SHARED=1" ) async def test_crypt_shared(self): + if sys.platform == "darwin": + raise unittest.SkipTest("Skipping due to SERVER-101020") kms_providers = { "aws": {"accessKeyId": "example", "secretAccessKey": "example"}, "local": {"key": b"\x00" * 96},