* 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>
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
import platform
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from . import test_projects, utils
|
|
|
|
|
|
def test_python_exist(tmp_path: Path, capfd: pytest.CaptureFixture[str]) -> None:
|
|
if utils.get_platform() != "linux":
|
|
pytest.skip("the test is only relevant to the linux build")
|
|
machine = platform.machine()
|
|
if machine not in ["x86_64", "i686"]:
|
|
pytest.skip(
|
|
"this test is currently only possible on x86_64/i686 due to availability of alternative images"
|
|
)
|
|
|
|
project_dir = tmp_path / "project"
|
|
basic_project = test_projects.new_c_project()
|
|
basic_project.generate(project_dir)
|
|
|
|
image = f"quay.io/pypa/manylinux2010_{machine}:2022-08-05-4535177"
|
|
|
|
with pytest.raises(subprocess.CalledProcessError):
|
|
utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_MANYLINUX_X86_64_IMAGE": image,
|
|
"CIBW_MANYLINUX_I686_IMAGE": image,
|
|
"CIBW_BUILD": "cp3{10,11}-manylinux*",
|
|
},
|
|
)
|
|
|
|
captured = capfd.readouterr()
|
|
print("out", captured.out)
|
|
print("err", captured.err)
|
|
assert f" to build 'cp310-manylinux_{machine}'." not in captured.err
|
|
message = (
|
|
"'/opt/python/cp311-cp311/bin/python' executable doesn't exist"
|
|
f" in image '{image}' to build 'cp311-manylinux_{machine}'."
|
|
)
|
|
assert message in captured.err
|