From 3c2ce16ad85d96b30009197dbbbdbe123c5a4248 Mon Sep 17 00:00:00 2001 From: Noah Stapp Date: Wed, 9 Apr 2025 15:14:35 -0400 Subject: [PATCH] =?UTF-8?q?PYTHON-5283=20-=20Skip=20test.test=5Fmonitor.Te?= =?UTF-8?q?stMonitor.test=5Fcleanup=5Fexecuto=E2=80=A6=20(#2268)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 195f6f9fa..55a20d764 100644 --- a/test/asynchronous/test_monitor.py +++ b/test/asynchronous/test_monitor.py @@ -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") diff --git a/test/test_monitor.py b/test/test_monitor.py index 25620a99e..8bcdf7130 100644 --- a/test/test_monitor.py +++ b/test/test_monitor.py @@ -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")