Skip to content

Commit 02fc2b3

Browse files
committed
Run threading checks on GIL builds too
1 parent d8854c5 commit 02fc2b3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/test/test_zstd.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2432,7 +2432,6 @@ def test_buffer_protocol(self):
24322432

24332433
class FreeThreadingMethodTests(unittest.TestCase):
24342434

2435-
@unittest.skipUnless(Py_GIL_DISABLED, 'this test can only possibly fail with GIL disabled')
24362435
@threading_helper.reap_threads
24372436
@threading_helper.requires_working_threading()
24382437
def test_compress_locking(self):
@@ -2469,7 +2468,6 @@ def run_method(method, input_data, output_data):
24692468
actual = b''.join(output) + rest2
24702469
self.assertEqual(expected, actual)
24712470

2472-
@unittest.skipUnless(Py_GIL_DISABLED, 'this test can only possibly fail with GIL disabled')
24732471
@threading_helper.reap_threads
24742472
@threading_helper.requires_working_threading()
24752473
def test_decompress_locking(self):

0 commit comments

Comments
 (0)