* Update dependencies * tests: disable color for Pyodide test Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * fix: nist.gov doesn't work anymore for this test Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * fix: limit click for typer Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: cibuildwheel-bot[bot] <83877280+cibuildwheel-bot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
import subprocess
|
|
|
|
import pytest
|
|
|
|
from . import utils
|
|
from .test_projects.c import new_c_project
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"frontend_name",
|
|
[
|
|
pytest.param("pip", marks=utils.skip_if_pyodide("No pip for pyodide")),
|
|
"build",
|
|
],
|
|
)
|
|
def test_build_frontend_args(tmp_path, capfd, frontend_name):
|
|
project = new_c_project()
|
|
project_dir = tmp_path / "project"
|
|
project.generate(project_dir)
|
|
|
|
# the build will fail because the frontend is called with '-h' - it prints the help message
|
|
add_env = {"CIBW_BUILD_FRONTEND": f"{frontend_name}; args: -h"}
|
|
if utils.platform == "pyodide":
|
|
add_env["TERM"] = "dumb" # disable color / style
|
|
add_env["NO_COLOR"] = "1"
|
|
with pytest.raises(subprocess.CalledProcessError):
|
|
utils.cibuildwheel_run(project_dir, add_env=add_env, single_python=True)
|
|
|
|
captured = capfd.readouterr()
|
|
print(captured.out)
|
|
|
|
# check that the help message was printed
|
|
if frontend_name == "pip":
|
|
assert "Usage:" in captured.out
|
|
assert "Wheel Options:" in captured.out
|
|
elif utils.platform == "pyodide":
|
|
assert "Usage: pyodide build" in captured.out
|
|
else:
|
|
assert "usage:" in captured.out
|
|
assert "A simple, correct Python build frontend." in captured.out
|