Skip to content

Commit d30f834

Browse files
committed
Skip abi3 tests when freethreading Python build is used
Skip the tests using abi3 extension when the freethreading build is used, as Python 3.13 freethreading does not support the limited API and its use results in a build error. Fixes #636
1 parent 7bb46d7 commit d30f834

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/conftest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import os.path
88
import subprocess
99
import sys
10+
import sysconfig
1011

1112
import pytest
1213

@@ -22,7 +23,7 @@ def wheels_and_eggs(tmp_path_factory):
2223
"unicode.dist",
2324
)
2425

25-
if sys.platform != "win32":
26+
if sys.platform != "win32" and sysconfig.get_config_var("Py_GIL_DISABLED") != 1:
2627
# ABI3 extensions don't really work on Windows
2728
test_distributions += ("abi3extension.dist",)
2829

0 commit comments

Comments
 (0)