Skip to content

Commit bee2a11

Browse files
authored
gh-115258: Temporarily skip some queue tests on all platforms (#115361)
1 parent 7861dfd commit bee2a11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_queue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,11 +403,11 @@ def _shutdown_all_methods_in_many_threads(self, immediate):
403403
for thread in ps[1:]:
404404
thread.join()
405405

406-
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
406+
@unittest.skip("test times out (gh-115258)")
407407
def test_shutdown_all_methods_in_many_threads(self):
408408
return self._shutdown_all_methods_in_many_threads(False)
409409

410-
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
410+
@unittest.skip("test times out (gh-115258)")
411411
def test_shutdown_immediate_all_methods_in_many_threads(self):
412412
return self._shutdown_all_methods_in_many_threads(True)
413413

0 commit comments

Comments
 (0)