From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 13 May 2025 08:27:17 +0000 (+0200) Subject: [3.14] gh-133885: skip `test_compress_locking` in `test_zstd` (GH-133943) (#133949) X-Git-Tag: v3.14.0b2~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=198dc8dcb2459e26cb97fa9653957cb0acbd6c70;p=thirdparty%2FPython%2Fcpython.git [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 --- 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')