We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89de6b2 commit 5f1bbc6Copy full SHA for 5f1bbc6
test/asynchronous/test_encryption.py
@@ -3482,6 +3482,8 @@ class TestNoSessionsSupport(AsyncEncryptionIntegrationTest):
3482
MONGOCRYPTD_PORT = 27020
3483
3484
async def asyncSetUp(self) -> None:
3485
+ if sys.implementation.name.lower() == "pypy":
3486
+ return
3487
await super().asyncSetUp()
3488
start_mongocryptd(self.MONGOCRYPTD_PORT)
3489
test/test_encryption.py
@@ -3464,6 +3464,8 @@ class TestNoSessionsSupport(EncryptionIntegrationTest):
3464
3465
3466
def setUp(self) -> None:
3467
3468
3469
super().setUp()
3470
3471
0 commit comments