The "test_shutdown_all_methods_in_many_threads" test times out on the Windows CI.
This skips the test on Windows until we figure out the root cause.
# to ensure the Queue locks remain stable.
import itertools
import random
+import sys
import threading
import time
import unittest
for thread in ps[1:]:
thread.join()
+ @unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
def test_shutdown_all_methods_in_many_threads(self):
return self._shutdown_all_methods_in_many_threads(False)
+ @unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
def test_shutdown_immediate_all_methods_in_many_threads(self):
return self._shutdown_all_methods_in_many_threads(True)