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 c998d80 commit 27ee121Copy full SHA for 27ee121
1 file changed
tests/test_editable_redirect.py
@@ -91,7 +91,9 @@ def test_editable_redirect_pxd():
91
"pkg.pyx_subpkg.module": "/source/pkg/pyx_subpkg/module.py",
92
}
93
)
94
- known_wheel_files = process_dict({"pkg.cython_subpkg.compiled": "pkg/cython_subpkg/compiled.abi3.so"})
+ known_wheel_files = process_dict(
95
+ {"pkg.cython_subpkg.compiled": "pkg/cython_subpkg/compiled.abi3.so"}
96
+ )
97
98
finder = ScikitBuildRedirectingFinder(
99
known_source_files=known_source_files,
@@ -122,6 +124,7 @@ def test_editable_redirect_pxd():
122
124
f"pkg.__path__ is polluted with pyx_subpkg: {pkg_paths}"
123
125
126
127
+
128
def test_mapping_to_modules_prefers_py():
129
"""Test that mapping_to_modules prefers __init__.py over __init__.pxd."""
130
from scikit_build_core.build._editable import mapping_to_modules
0 commit comments