]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-133885: skip `test_compress_locking` in `test_zstd` (#133943)
authorsobolevn <mail@sobolevn.me>
Mon, 12 May 2025 19:15:44 +0000 (22:15 +0300)
committerGitHub <noreply@github.com>
Mon, 12 May 2025 19:15:44 +0000 (19:15 +0000)
Lib/test/test_zstd.py

index 541db4441b035c76b9f5e53b2445863e2326c6b0..53ca592ea38828b72c5ef6c1f4ca2e07d495de79 100644 (file)
@@ -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')