Skip to content

Commit

Permalink
pythongh-115258: Temporarily skip test on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
Eclips4 committed Feb 12, 2024
1 parent 4297d73 commit 7969043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7969043

Please sign in to comment.