From: sobolevn Date: Mon, 12 May 2025 19:15:44 +0000 (+0300) Subject: gh-133885: skip `test_compress_locking` in `test_zstd` (#133943) X-Git-Tag: v3.15.0a1~1742 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e8665d4d46921623745ca5d2b32dc576339ea53f;p=thirdparty%2FPython%2Fcpython.git gh-133885: skip `test_compress_locking` in `test_zstd` (#133943) --- diff --git a/Lib/test/test_zstd.py b/Lib/test/test_zstd.py index 541db4441b03..53ca592ea388 100644 --- a/Lib/test/test_zstd.py +++ b/Lib/test/test_zstd.py @@ -2430,6 +2430,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')