We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ffeed commit e89c3b1Copy full SHA for e89c3b1
tests/conftest.py
@@ -382,8 +382,10 @@ def verify_cleanup(
382
# Verify no threads where left behind.
383
threads = frozenset(threading.enumerate()) - threads_before
384
for thread in threads:
385
- assert isinstance(thread, threading._DummyThread) or thread.name.startswith(
386
- "waitpid-"
+ assert (
+ isinstance(thread, threading._DummyThread)
387
+ or thread.name.startswith("waitpid-")
388
+ or "_run_safe_shutdown_loop" in thread.name
389
)
390
391
try:
0 commit comments