Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bindings/python/test/test_mongocrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down Expand Up @@ -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},
Expand Down
Loading