Skip to content

Commit 3c2ce16

Browse files
authored
PYTHON-5283 - Skip test.test_monitor.TestMonitor.test_cleanup_executo… (#2268)
1 parent fafa00e commit 3c2ce16

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: test/asynchronous/test_monitor.py

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ async def create_client(self):
5757
await connected(client)
5858
return client
5959

60+
@unittest.skipIf("PyPy" in sys.version, "PYTHON-5283 fails often on PyPy")
6061
async def test_cleanup_executors_on_client_del(self):
6162
with warnings.catch_warnings(record=True) as w:
6263
warnings.simplefilter("always")

Diff for: test/test_monitor.py

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def create_client(self):
5757
connected(client)
5858
return client
5959

60+
@unittest.skipIf("PyPy" in sys.version, "PYTHON-5283 fails often on PyPy")
6061
def test_cleanup_executors_on_client_del(self):
6162
with warnings.catch_warnings(record=True) as w:
6263
warnings.simplefilter("always")

0 commit comments

Comments
 (0)