We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4073084 commit 1c3f668Copy full SHA for 1c3f668
tests/test_cross_compile.py
@@ -9,10 +9,12 @@
9
10
from scikit_build_core.builder.cross_compile import set_cross_compile_env
11
12
+ext_suffix = sysconfig.get_config_var("EXT_SUFFIX")
13
+
14
15
@pytest.mark.skipif(
- sysconfig.get_config_var("SOABI") != "cp311-win_amd64",
- reason=f"Only tests 'cp311-win_amd64', got {sysconfig.get_config_var('SOABI')!r}",
16
+ ext_suffix != ".cp311-win_amd64.pyd",
17
+ reason=f"Only tests '.cp311-win_amd64.pyd', got {ext_suffix!r}",
18
)
19
def test_environment():
20
env = os.environ.copy()
0 commit comments