mirror of https://github.com/python/cpython.git
gh-115258: Temporarily skip some `queue` tests on all platforms (#115361)
This commit is contained in:
parent
7861dfd26a
commit
bee2a11946
|
@ -403,11 +403,11 @@ def _shutdown_all_methods_in_many_threads(self, immediate):
|
|||
for thread in ps[1:]:
|
||||
thread.join()
|
||||
|
||||
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
|
||||
@unittest.skip("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)")
|
||||
@unittest.skip("test times out (gh-115258)")
|
||||
def test_shutdown_immediate_all_methods_in_many_threads(self):
|
||||
return self._shutdown_all_methods_in_many_threads(True)
|
||||
|
||||
|
|
Loading…
Reference in New Issue