diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-02-12 20:52:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 20:52:25 (GMT) |
commit | bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc (patch) | |
tree | e5ba13968ef9d4f91d68108c95f9cd49eae438a4 | |
parent | 7861dfd26a41e40c2b4361eb0bb1356b9b4a064b (diff) | |
download | cpython-bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc.zip cpython-bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc.tar.gz cpython-bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc.tar.bz2 |
gh-115258: Temporarily skip some `queue` tests on all platforms (#115361)
-rw-r--r-- | Lib/test/test_queue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index d308a21..92d670c 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) |