PYTHON-4738 Skip encryption test_fork on PyPy (#1865)

This commit is contained in:
Steven Silvester 2024-09-17 20:00:06 -05:00 committed by GitHub
parent 9a71be1615
commit 6d472a10a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -380,6 +380,7 @@ class TestClientSimple(AsyncEncryptionIntegrationTest):
is_greenthread_patched(),
"gevent and eventlet do not support POSIX-style forking.",
)
@unittest.skipIf("PyPy" in sys.version, "PYTHON-4738 fails often on PyPy")
@async_client_context.require_sync
async def test_fork(self):
opts = AutoEncryptionOpts(KMS_PROVIDERS, "keyvault.datakeys")

View File

@ -380,6 +380,7 @@ class TestClientSimple(EncryptionIntegrationTest):
is_greenthread_patched(),
"gevent and eventlet do not support POSIX-style forking.",
)
@unittest.skipIf("PyPy" in sys.version, "PYTHON-4738 fails often on PyPy")
@client_context.require_sync
def test_fork(self):
opts = AutoEncryptionOpts(KMS_PROVIDERS, "keyvault.datakeys")