File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -507,6 +507,8 @@ def mongo_crypt_opts():
507
507
os .getenv ("TEST_CRYPT_SHARED" ), "this test requires TEST_CRYPT_SHARED=1"
508
508
)
509
509
def test_crypt_shared (self ):
510
+ if sys .platform == "darwin" :
511
+ raise unittest .SkipTest ("Skipping due to SERVER-101020" )
510
512
kms_providers = {
511
513
"aws" : {"accessKeyId" : "example" , "secretAccessKey" : "example" },
512
514
"local" : {"key" : b"\x00 " * 96 },
@@ -638,6 +640,8 @@ def mongo_crypt_opts():
638
640
os .getenv ("TEST_CRYPT_SHARED" ), "this test requires TEST_CRYPT_SHARED=1"
639
641
)
640
642
async def test_crypt_shared (self ):
643
+ if sys .platform == "darwin" :
644
+ raise unittest .SkipTest ("Skipping due to SERVER-101020" )
641
645
kms_providers = {
642
646
"aws" : {"accessKeyId" : "example" , "secretAccessKey" : "example" },
643
647
"local" : {"key" : b"\x00 " * 96 },
You can’t perform that action at this time.
0 commit comments