* tests: fully type the test suite * chore: require more typing Signed-off-by: Henry Schreiner <henryfs@princeton.edu> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: Henry Schreiner <henryfs@princeton.edu> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
from pathlib import Path
|
|
|
|
import packaging.utils
|
|
|
|
from . import test_projects, utils
|
|
|
|
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
|