Skip to content

Commit ad91418

Browse files
committed
skip test on pypy
1 parent 54fe7c2 commit ad91418

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.lower() == "pypy":
3486+
raise self.skipTest("PYTHON-4982 Skipping test on pypy")
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.lower() == "pypy":
3468+
raise self.skipTest("PYTHON-4982 Skipping test on pypy")
34673469
super().setUp()
34683470
start_mongocryptd(self.MONGOCRYPTD_PORT)
34693471

0 commit comments

Comments
 (0)