]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115258: Temporarily skip some `queue` tests on all platforms (#115361)
authorKirill Podoprigora <kirill.bast9@mail.ru>
Mon, 12 Feb 2024 20:52:25 +0000 (23:52 +0300)
committerGitHub <noreply@github.com>
Mon, 12 Feb 2024 20:52:25 +0000 (20:52 +0000)
Lib/test/test_queue.py

index d308a212999429e903aaab41d56b4e99fb92bdb6..92d670ca6f8f5bd2b4e9640d2be6fd85f672e691 100644 (file)
@@ -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)