* Improve integration test options - Keep the platform and enable options in os.environ, don't duplicate state in utils - Provide more user-friendly options for setting enable and platform in integration tests * Ensure that CIBW_ENABLE is set in the test process * Use get_enable_groups() where necessary
57 lines
1.5 KiB
Python
57 lines
1.5 KiB
Python
import textwrap
|
|
|
|
import pytest
|
|
|
|
from . import test_projects, utils
|
|
|
|
project_with_manylinux_symbols = test_projects.new_c_project(
|
|
spam_c_top_level_add=textwrap.dedent(
|
|
r"""
|
|
#include <stdlib.h>
|
|
|
|
#if defined(__GLIBC_PREREQ)
|
|
#error "Must not run on a glibc linux environment"
|
|
#endif
|
|
"""
|
|
),
|
|
spam_c_function_add=textwrap.dedent(
|
|
r"""
|
|
sts = 0;
|
|
"""
|
|
),
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"musllinux_image",
|
|
["musllinux_1_2"],
|
|
)
|
|
@pytest.mark.usefixtures("docker_cleanup")
|
|
def test(musllinux_image, tmp_path):
|
|
if utils.get_platform() != "linux":
|
|
pytest.skip("the container image test is only relevant to the linux build")
|
|
|
|
project_dir = tmp_path / "project"
|
|
project_with_manylinux_symbols.generate(project_dir)
|
|
|
|
# build the wheels
|
|
add_env = {
|
|
"CIBW_SKIP": "*-manylinux*",
|
|
"CIBW_MUSLLINUX_X86_64_IMAGE": musllinux_image,
|
|
"CIBW_MUSLLINUX_I686_IMAGE": musllinux_image,
|
|
"CIBW_MUSLLINUX_AARCH64_IMAGE": musllinux_image,
|
|
"CIBW_MUSLLINUX_PPC64LE_IMAGE": musllinux_image,
|
|
"CIBW_MUSLLINUX_S390X_IMAGE": musllinux_image,
|
|
"CIBW_MUSLLINUX_ARMV7L_IMAGE": musllinux_image,
|
|
}
|
|
|
|
actual_wheels = utils.cibuildwheel_run(project_dir, add_env=add_env, single_python=True)
|
|
expected_wheels = utils.expected_wheels(
|
|
"spam",
|
|
"0.1.0",
|
|
manylinux_versions=[],
|
|
musllinux_versions=[musllinux_image],
|
|
single_python=True,
|
|
)
|
|
assert set(actual_wheels) == set(expected_wheels)
|