https://github.com/python/cpython/commit/bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc
commit: bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc
branch: main
author: Kirill Podoprigora <[email protected]>
committer: colesbury <[email protected]>
date: 2024-02-12T20:52:25Z
summary:

gh-115258: Temporarily skip some `queue` tests on all platforms (#115361)

files:
M Lib/test/test_queue.py

diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py
index d308a212999429..92d670ca6f8f5b 100644
--- a/Lib/test/test_queue.py
+++ b/Lib/test/test_queue.py
@@ -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)
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to