* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.4 → v0.4.5](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.4...v0.4.5) - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0) - [github.com/python-jsonschema/check-jsonschema: 0.28.3 → 0.28.4](https://github.com/python-jsonschema/check-jsonschema/compare/0.28.3...0.28.4) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
41 lines
918 B
Python
41 lines
918 B
Python
from __future__ import annotations
|
|
|
|
import subprocess
|
|
|
|
import pytest
|
|
|
|
from test import test_projects
|
|
|
|
from . import utils
|
|
|
|
pure_python_project = test_projects.TestProject()
|
|
pure_python_project.files["setup.py"] = """
|
|
from setuptools import Extension, setup
|
|
|
|
setup(
|
|
name="spam",
|
|
py_modules=['spam'],
|
|
version="0.1.0",
|
|
)
|
|
"""
|
|
|
|
pure_python_project.files["spam.py"] = """
|
|
def a_function():
|
|
pass
|
|
"""
|
|
|
|
|
|
def test(tmp_path, capfd):
|
|
# this test checks that if a pure wheel is generated, the build should
|
|
# fail.
|
|
project_dir = tmp_path / "project"
|
|
pure_python_project.generate(project_dir)
|
|
|
|
with pytest.raises(subprocess.CalledProcessError):
|
|
print("produced wheels:", utils.cibuildwheel_run(project_dir))
|
|
|
|
captured = capfd.readouterr()
|
|
print("out", captured.out)
|
|
print("err", captured.err)
|
|
assert "Build failed because a pure Python wheel was generated" in captured.err
|