We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de2fd9 commit b83a0aaCopy full SHA for b83a0aa
1 file changed
test/test_limits.py
@@ -1,4 +1,6 @@
1
#!/usr/bin/env python
2
+import sysconfig
3
+
4
import pytest
5
6
from msgpack import (
@@ -153,6 +155,11 @@ def test_auto_max_array_len():
153
155
unpacker.unpack()
154
156
157
158
+# Skip on free-threaded CPython builds because this test depends on recursion behavior.
159
+IS_FREE_THREADED_BUILD = bool(sysconfig.get_config_var("Py_GIL_DISABLED"))
160
161
162
+@pytest.mark.skipif(IS_FREE_THREADED_BUILD, reason="Skipped on free-threaded build")
163
def test_nest_limit_1024():
164
import sys
165
0 commit comments