Skip to content

Commit

Permalink
gh-115258: Temporarily skip some queue tests on all platforms (#115361
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Eclips4 authored Feb 12, 2024
1 parent 7861dfd commit bee2a11
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 bee2a11

Please sign in to comment.