From b5bbf33c79e6bbd8e74a0795f221c96819af96c8 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Wed, 3 Jun 2026 12:30:37 +0900 Subject: [PATCH] don't skip test on no-GIL build --- test/test_limits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_limits.py b/test/test_limits.py index bb554d68..0ca827a9 100644 --- a/test/test_limits.py +++ b/test/test_limits.py @@ -159,7 +159,7 @@ def test_auto_max_array_len(): IS_FREE_THREADED_BUILD = bool(sysconfig.get_config_var("Py_GIL_DISABLED")) -@pytest.mark.skipif(IS_FREE_THREADED_BUILD, reason="Skipped on free-threaded build") +#@pytest.mark.skipif(IS_FREE_THREADED_BUILD, reason="Skipped on free-threaded build") def test_nest_limit_1024(): import sys