8000
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 4821f08 commit 1a6e213Copy full SHA for 1a6e213
Lib/test/test_queue.py
@@ -2,6 +2,7 @@
2
# to ensure the Queue locks remain stable.
3
import itertools
4
import random
5
+import sys
6
import threading
7
import time
8
import unittest
@@ -402,9 +403,11 @@ def _shutdown_all_methods_in_many_threads(self, immediate):
402
403
for thread in ps[1:]:
404
thread.join()
405
406
+ @unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
407
def test_shutdown_all_methods_in_many_threads(self):
408
return self._shutdown_all_methods_in_many_threads(False)
409
410
411
def test_shutdown_immediate_all_methods_in_many_threads(self):
412
return self._shutdown_all_methods_in_many_threads(True)
413
0 commit comments