Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PYTHON-5283 - Skip test.test_monitor.TestMonitor.test_cleanup_executo…
…rs_on_client_del fails on PyPy
  • Loading branch information
NoahStapp committed Apr 8, 2025
commit 3c73c37f943ab11f56979225af8ffa72465faccc
1 change: 1 addition & 0 deletions test/asynchronous/test_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
1 change: 1 addition & 0 deletions test/test_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading