From: Kirill Podoprigora Date: Mon, 12 Feb 2024 20:52:25 +0000 (+0300) Subject: gh-115258: Temporarily skip some `queue` tests on all platforms (#115361) X-Git-Tag: v3.13.0a4~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc;p=thirdparty%2FPython%2Fcpython.git gh-115258: Temporarily skip some `queue` tests on all platforms (#115361) --- diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index d308a2129994..92d670ca6f8f 100644 --- a/Lib/test/test_queue.py +++ b/Lib/test/test_queue.py @@ -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)