Skip to content

Commit 5f1bbc6

Browse files
committed
add another skip
1 parent 89de6b2 commit 5f1bbc6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

test/asynchronous/test_encryption.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3482,6 +3482,8 @@ class TestNoSessionsSupport(AsyncEncryptionIntegrationTest):
34823482
MONGOCRYPTD_PORT = 27020
34833483

34843484
async def asyncSetUp(self) -> None:
3485+
if sys.implementation.name.lower() == "pypy":
3486+
return
34853487
await super().asyncSetUp()
34863488
start_mongocryptd(self.MONGOCRYPTD_PORT)
34873489

test/test_encryption.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3464,6 +3464,8 @@ class TestNoSessionsSupport(EncryptionIntegrationTest):
34643464
MONGOCRYPTD_PORT = 27020
34653465

34663466
def setUp(self) -> None:
3467+
if sys.implementation.name.lower() == "pypy":
3468+
return
34673469
super().setUp()
34683470
start_mongocryptd(self.MONGOCRYPTD_PORT)
34693471

0 commit comments

Comments
 (0)