PYTHON-4738 Skip encryption fork test (#1972)

This commit is contained in:
Steven Silvester 2024-10-25 09:49:37 -05:00 committed by GitHub
parent 85ba541ed5
commit 97ac3ebee2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -380,9 +380,9 @@ 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):
self.skipTest("Test is flaky, PYTHON-4738")
opts = AutoEncryptionOpts(KMS_PROVIDERS, "keyvault.datakeys")
client = await self.async_rs_or_single_client(auto_encryption_opts=opts)

View File

@ -380,9 +380,9 @@ 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):
self.skipTest("Test is flaky, PYTHON-4738")
opts = AutoEncryptionOpts(KMS_PROVIDERS, "keyvault.datakeys")
client = self.rs_or_single_client(auto_encryption_opts=opts)