From 198dc8dcb2459e26cb97fa9653957cb0acbd6c70 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 13 May 2025 10:27:17 +0200 Subject: [PATCH] [3.14] gh-133885: skip `test_compress_locking` in `test_zstd` (GH-133943) (#133949) gh-133885: skip `test_compress_locking` in `test_zstd` (GH-133943) (cherry picked from commit e8665d4d46921623745ca5d2b32dc576339ea53f) Co-authored-by: sobolevn --- Lib/test/test_zstd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_zstd.py b/Lib/test/test_zstd.py index 713294c4c276..83d922d9cf22 100644 --- a/Lib/test/test_zstd.py +++ b/Lib/test/test_zstd.py @@ -2426,6 +2426,7 @@ class OpenTestCase(unittest.TestCase): self.assertEqual(f.write(arr), LENGTH) self.assertEqual(f.tell(), LENGTH) +@unittest.skip("it fails for now, see gh-133885") class FreeThreadingMethodTests(unittest.TestCase): @unittest.skipUnless(Py_GIL_DISABLED, 'this test can only possibly fail with GIL disabled') -- 2.47.3