File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -3482,6 +3482,8 @@ class TestNoSessionsSupport(AsyncEncryptionIntegrationTest):
3482
3482
MONGOCRYPTD_PORT = 27020
3483
3483
3484
3484
async def asyncSetUp (self ) -> None :
3485
+ if sys .implementation .lower () == "pypy" :
3486
+ raise self .skipTest ("PYTHON-4982 Skipping test on pypy" )
3485
3487
await super ().asyncSetUp ()
3486
3488
start_mongocryptd (self .MONGOCRYPTD_PORT )
3487
3489
Original file line number Diff line number Diff line change @@ -3464,6 +3464,8 @@ class TestNoSessionsSupport(EncryptionIntegrationTest):
3464
3464
MONGOCRYPTD_PORT = 27020
3465
3465
3466
3466
def setUp (self ) -> None :
3467
+ if sys .implementation .lower () == "pypy" :
3468
+ raise self .skipTest ("PYTHON-4982 Skipping test on pypy" )
3467
3469
super ().setUp ()
3468
3470
start_mongocryptd (self .MONGOCRYPTD_PORT )
3469
3471
You can’t perform that action at this time.
0 commit comments