36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from __future__ import annotations
|
|
|
|
import packaging.utils
|
|
|
|
from . import test_projects, utils
|
|
|
|
TYPE_CHECKING = False
|
|
if TYPE_CHECKING:
|
|
from pathlib import Path
|
|
|
|
meson_project = test_projects.new_meson_project()
|
|
|
|
|
|
def test_meson_python_basic(tmp_path: Path, build_frontend_env: dict[str, str]) -> None:
|
|
"""Test that cibuildwheel can build a project with meson-python backend."""
|
|
project_dir = tmp_path / "project"
|
|
|
|
meson_project.generate(project_dir)
|
|
|
|
# build the wheels
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env=build_frontend_env,
|
|
single_python=True,
|
|
)
|
|
|
|
# check that the expected wheels are produced
|
|
# note that the meson test project doesn't support win32.
|
|
is_windows = utils.get_platform() == "windows"
|
|
expected_wheels = utils.expected_wheels(
|
|
"spam", "0.1.0", single_python=True, single_arch=is_windows
|
|
)
|
|
actual_wheels_normalized = {packaging.utils.parse_wheel_filename(w) for w in actual_wheels}
|
|
expected_wheels_normalized = {packaging.utils.parse_wheel_filename(w) for w in expected_wheels}
|
|
assert actual_wheels_normalized == expected_wheels_normalized
|