mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-115258: Temporarily skip some queue
tests on all platforms (#115361)
This commit is contained in:
parent
7861dfd26a
commit
bee2a11946
1 changed files with 2 additions and 2 deletions
|
@ -403,11 +403,11 @@ class BaseQueueTestMixin(BlockingTestMixin):
|
|||
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…
Add table
Add a link
Reference in a new issue