From 65ab4a3c7352ee6a945cf3a82da3e7b9938e7578 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Mon, 12 May 2025 22:15:44 +0300 Subject: [PATCH] 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 713294c4c27685..83d922d9cf22ac 100644 --- a/Lib/test/test_zstd.py +++ b/Lib/test/test_zstd.py @@ -2426,6 +2426,7 @@ def test_buffer_protocol(self): 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')