Skip to content

Commit 467f1fc

Browse files
authored
PYTHON-5186 Skip crypt_shared tests on MacOS (#986)
* PYTHON-5186 Skip crypt_shared tests on MacOS * skip async test
1 parent 4d664d5 commit 467f1fc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bindings/python/test/test_mongocrypt.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,8 @@ def mongo_crypt_opts():
507507
os.getenv("TEST_CRYPT_SHARED"), "this test requires TEST_CRYPT_SHARED=1"
508508
)
509509
def test_crypt_shared(self):
510+
if sys.platform == "darwin":
511+
raise unittest.SkipTest("Skipping due to SERVER-101020")
510512
kms_providers = {
511513
"aws": {"accessKeyId": "example", "secretAccessKey": "example"},
512514
"local": {"key": b"\x00" * 96},
@@ -638,6 +640,8 @@ def mongo_crypt_opts():
638640
os.getenv("TEST_CRYPT_SHARED"), "this test requires TEST_CRYPT_SHARED=1"
639641
)
640642
async def test_crypt_shared(self):
643+
if sys.platform == "darwin":
644+
raise unittest.SkipTest("Skipping due to SERVER-101020")
641645
kms_providers = {
642646
"aws": {"accessKeyId": "example", "secretAccessKey": "example"},
643647
"local": {"key": b"\x00" * 96},

0 commit comments

Comments
 (0)