From 3c73c37f943ab11f56979225af8ffa72465faccc Mon Sep 17 00:00:00 2001 From: Noah Stapp Date: Tue, 8 Apr 2025 10:39:10 -0400 Subject: [PATCH] PYTHON-5283 - Skip test.test_monitor.TestMonitor.test_cleanup_executors_on_client_del fails on PyPy --- test/asynchronous/test_monitor.py | 1 + test/test_monitor.py | 1 + 2 files changed, 2 insertions(+) diff --git a/test/asynchronous/test_monitor.py b/test/asynchronous/test_monitor.py index 195f6f9fac..55a20d7643 100644 --- a/test/asynchronous/test_monitor.py +++ b/test/asynchronous/test_monitor.py @@ -57,6 +57,7 @@ async def create_client(self): 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") diff --git a/test/test_monitor.py b/test/test_monitor.py index 25620a99e8..8bcdf7130a 100644 --- a/test/test_monitor.py +++ b/test/test_monitor.py @@ -57,6 +57,7 @@ def create_client(self): 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")