PYTHON-5283 - Skip test.test_monitor.TestMonitor.test_cleanup_executo… (#2268)

This commit is contained in:
Noah Stapp 2025-04-09 15:14:35 -04:00 committed by GitHub
parent fafa00e9e3
commit 3c2ce16ad8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@ class TestMonitor(AsyncIntegrationTest):
await connected(client)
return client
@unittest.skipIf("PyPy" in sys.version, "PYTHON-5283 fails often on PyPy")
async def test_cleanup_executors_on_client_del(self):
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")

View File

@ -57,6 +57,7 @@ class TestMonitor(IntegrationTest):
connected(client)
return client
@unittest.skipIf("PyPy" in sys.version, "PYTHON-5283 fails often on PyPy")
def test_cleanup_executors_on_client_del(self):
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")