]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-133885: skip `test_compress_locking` in `test_zstd` (GH-133943) (#133949)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 13 May 2025 08:27:17 +0000 (10:27 +0200)
committerGitHub <noreply@github.com>
Tue, 13 May 2025 08:27:17 +0000 (08:27 +0000)
gh-133885: skip `test_compress_locking` in `test_zstd` (GH-133943)
(cherry picked from commit e8665d4d46921623745ca5d2b32dc576339ea53f)

Co-authored-by: sobolevn <mail@sobolevn.me>
Lib/test/test_zstd.py

index 713294c4c27685a18fe594e0223b202dc1693d78..83d922d9cf22ac14532759d6dfcd84d98f943261 100644 (file)
@@ -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')