* Fix a typo: pyoodide ➡️ pyodide * Add `pyodide_build_version` attribute * Add version to xbuildenv log step * Add version to Emscripten log step * Use `pyodide-build`'s version for updating constraints * Bump Pyodide constraints by updating `pyodide-build` * Add a schema for `pyodide-version` * Update Pyodide constraints * Bump `pyodide-build` to new 0.29.0 * Test out another Pyodide identifier * Update outdated Pyodide constraints * Add Pyodide version to temp directory name * Remove Pyodide 0.26.1 from build configurations * Retrieve + validate + install specific xbuildenvs * Test wheel builds with Pyodide 0.26.2 * Add correct Pyodide version to identifier temp dir * Don't pre-call Pyodide xbuildenv search * Fetch just the stable Pyodide versions * Refactor search + validation + install into one step * Move all of it under a lock * Reorder xbuildenv installation * Add env and cwd to xbuildenv search call * Temporarily lower to 0.26.2 target * Separate out search, validate, install; again * Run xbuildenv search in `CIBW_CACHE_PATH` * Remove prior `PYODIDE_ROOT` env vars, copy envs * Validate doesn't need to depend on searching * Add file lock when searching xbuildenvs * Test the original version: 0.26.1 * Update Pyodide constraints * Update constraints for `pyodide-build` 0.29.0 again * Bump Pyodide from version 0.26.1 ➡️ version 0.26.4 * Add note on compatibility for macOS + other archs * Note Pyodide version for Pyodide identifier * Docs about `CIBW_PYODIDE_VERSION` * Don't fetch just the stable versions * Discard a variable that's not used later * Rename `search_xbuildenv` ➡️ `get_xbuildenv_versions` * `validate_xbuildenv` ➡️ `validate_xbuildenv_version` * Replace ordered comment, add newline * Replace sentence on macOS support Co-Authored-By: Hood Chatham <roberthoodchatham@gmail.com> * Capitalise: "pyodide" ➡️ "Pyodide" Co-Authored-By: Hood Chatham <roberthoodchatham@gmail.com> * "work" ➡️ "may succeed" Co-Authored-By: Hood Chatham <roberthoodchatham@gmail.com> * Add another job to test a custom Pyodide version * Handle "v"-prefixed + non-prefixed versions * Convert to a proper toml-able option, and remove some hardcoded versions This removes the enscripten and pyodide-build version specs from pyproject.toml - pyodide-build is spec'd in the constraints file, and the emscripten version can be read from the pyodide-build output. * Add a schema entry * Add docs for CIBW_PYODIDE_VERSION * Rephrase * Add tests for pyodide-version * Apply suggestions from code review * Add python_build_standalone util * Hook up to python-build-standalone, removing dependency on host python * Remove python hard-code in action.yml * Add log step * Add workaround for https://github.com/pyodide/pyodide-build/issues/143 * Add emscripten pytest test * Remove unneeded checks * Fix a pytest invoke for emscripten * Generate pyodide-build constraints from the pinned pyodide version * Remove pyodide python-build-standalone workaround * Fixup paths from newer version of pyodide-build * Fix/skip some failing tests * Use `python -m pytest` on pyodide, even on Linux * Docs fixes * Don't call the github API at runtime, cache the release assets instead * Ignore pylint false positive * Add version auto-updating for pyodide * Add support for pyodide 3.13. * Fix tests for multiple pyodide wheels * Remove workaround for unreleased pyodide-build * Rename to "test_pyodide" * Fix pathname confusion * Remove extra github actions job * Fix expectation for test_abi_none * Fix the custom_repair_wheel test to actually have clashing names * Fix pinned version test * Document test-command limitation * Remove pyodide 0.28.0a1 for now * Update constraints files * Docs/test fixes post removing pyodide cp313 * Fix ABI test expectation * Docs improvements * Improve some comments * Remove logic duplication * remove pyodide special casing * Refactor constraints code to use a utility script, circumventing import issues * chore: nicer nox env Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * fix: typo in variable name found by copilot Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Apply suggestions from code review * Some more Pyodide version updates in the docs section * We haven't released Pyodide v0.27.6 yet * Back to the Github URL for cross-build-environments * `pyodide-build`, not `emsdk` for Windows skips Co-Authored-By: Hood Chatham <roberthoodchatham@gmail.com> * Move to a separate `_json_request` function Co-Authored-By: Hood Chatham <roberthoodchatham@gmail.com> * Rename "retries" ➡️ "retry_count" * Add some type hints * Copy env vars before `UV_CUSTOM_COMPILE_COMMAND` * Use `HTTPError.headers.get` instead * Remove extra end quote * Change download tests URL to `https://badssl.com/` Co-Authored-By: Joe Rickerby <1244307+joerick@users.noreply.github.com> * Download size changes, too * Use jsdelivr for Github asset mirroring * Bump to Pyodide v0.27.6 * Fix unit tests * Move to pyodide v0.27.6 again * Bump to pyodide-build 0.30.4 * Use new URL for cross-build environments metadata Co-authored-by: Joe Rickerby <joerick@mac.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: Hood Chatham <roberthoodchatham@gmail.com> Co-authored-by: Joe Rickerby <joerick@mac.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Joe Rickerby <1244307+joerick@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
254 lines
8.7 KiB
Python
254 lines
8.7 KiB
Python
import inspect
|
|
import subprocess
|
|
import textwrap
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from . import test_projects, utils
|
|
|
|
project_with_a_test = test_projects.new_c_project(
|
|
setup_cfg_add=textwrap.dedent(
|
|
r"""
|
|
[options.extras_require]
|
|
test = pytest
|
|
"""
|
|
)
|
|
)
|
|
|
|
project_with_a_test.files["test/spam_test.py"] = r'''
|
|
import os
|
|
import platform
|
|
import sys
|
|
import struct
|
|
from unittest import TestCase
|
|
|
|
import spam
|
|
|
|
|
|
def path_contains(parent, child):
|
|
""" returns True if `child` is inside `parent`.
|
|
Works around path-comparison bugs caused by short-paths on Windows e.g.
|
|
vssadm~1 instead of vssadministrator
|
|
"""
|
|
parent = os.path.abspath(parent)
|
|
child = os.path.abspath(child)
|
|
|
|
while child != os.path.dirname(child):
|
|
child = os.path.dirname(child)
|
|
if os.stat(parent) == os.stat(child):
|
|
# parent and child refer to the same directory on the filesystem
|
|
return True
|
|
return False
|
|
|
|
|
|
class TestSpam(TestCase):
|
|
def test_filter(self):
|
|
self.assertEqual(0, spam.filter("spam"))
|
|
self.assertNotEqual(0, spam.filter("ham"))
|
|
|
|
def test_virtualenv(self):
|
|
# sys.prefix is different from sys.base_prefix when running a virtualenv
|
|
# See https://docs.python.org/3/library/venv.html, which virtualenv seems
|
|
# to honor in recent releases
|
|
if sys.prefix == sys.base_prefix:
|
|
self.fail("Not running in a virtualenv")
|
|
|
|
self.assertTrue(path_contains(sys.prefix, sys.executable))
|
|
self.assertTrue(path_contains(sys.prefix, spam.__file__))
|
|
self.assertIn("VIRTUAL_ENV", os.environ)
|
|
|
|
def test_uname(self):
|
|
if platform.system() == "Windows":
|
|
return
|
|
# if we're running in 32-bit Python, check that the machine is i686.
|
|
# See #336 for more info.
|
|
bits = struct.calcsize("P") * 8
|
|
if bits == 32:
|
|
self.assertIn(platform.machine(), ["i686", "armv7l","armv8l", "wasm32"])
|
|
|
|
def test_pythonsafepath(self):
|
|
# check that the PYTHONSAFEPATH environment variable is set
|
|
value = os.environ.get("PYTHONSAFEPATH")
|
|
self.assertIsNotNone(value)
|
|
self.assertNotEqual(value, "")
|
|
'''
|
|
|
|
|
|
def test(tmp_path):
|
|
project_dir = tmp_path / "project"
|
|
project_with_a_test.generate(project_dir)
|
|
|
|
# build and test the wheels
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_TEST_REQUIRES": "pytest",
|
|
# the 'false ||' bit is to ensure this command runs in a shell on
|
|
# mac/linux.
|
|
"CIBW_TEST_COMMAND": f"false || {utils.invoke_pytest()} ./test",
|
|
# pytest fails on GraalPy 24.2.0 on Windows so we skip it there
|
|
# until https://github.com/oracle/graalpython/issues/490 is fixed
|
|
"CIBW_TEST_COMMAND_WINDOWS": "COLOR 00 || where graalpy || pytest ./test",
|
|
},
|
|
)
|
|
|
|
# also check that we got the right wheels
|
|
expected_wheels = utils.expected_wheels("spam", "0.1.0")
|
|
assert set(actual_wheels) == set(expected_wheels)
|
|
|
|
|
|
def test_extras_require(tmp_path):
|
|
project_dir = tmp_path / "project"
|
|
project_with_a_test.generate(project_dir)
|
|
|
|
# build and test the wheels
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_TEST_EXTRAS": "test",
|
|
# the 'false ||' bit is to ensure this command runs in a shell on
|
|
# mac/linux.
|
|
"CIBW_TEST_COMMAND": f"false || {utils.invoke_pytest()} ./test",
|
|
# pytest fails on GraalPy 24.2.0 on Windows so we skip it there
|
|
# until https://github.com/oracle/graalpython/issues/490 is fixed
|
|
"CIBW_TEST_COMMAND_WINDOWS": "COLOR 00 || where graalpy || pytest ./test",
|
|
},
|
|
single_python=True,
|
|
)
|
|
|
|
# also check that we got the right wheels
|
|
expected_wheels = utils.expected_wheels("spam", "0.1.0", single_python=True)
|
|
assert set(actual_wheels) == set(expected_wheels)
|
|
|
|
|
|
def test_dependency_groups(tmp_path):
|
|
group_project = project_with_a_test.copy()
|
|
group_project.files["pyproject.toml"] = inspect.cleandoc("""
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest"]
|
|
""")
|
|
|
|
project_dir = tmp_path / "project"
|
|
group_project.generate(project_dir)
|
|
|
|
# build and test the wheels
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_TEST_GROUPS": "dev",
|
|
# the 'false ||' bit is to ensure this command runs in a shell on
|
|
# mac/linux.
|
|
"CIBW_TEST_COMMAND": f"false || {utils.invoke_pytest()} ./test",
|
|
# pytest fails on GraalPy 24.2.0 on Windows so we skip it there
|
|
# until https://github.com/oracle/graalpython/issues/490 is fixed
|
|
"CIBW_TEST_COMMAND_WINDOWS": "COLOR 00 || where graalpy || pytest ./test",
|
|
},
|
|
single_python=True,
|
|
)
|
|
|
|
# also check that we got the right wheels
|
|
expected_wheels = utils.expected_wheels("spam", "0.1.0", single_python=True)
|
|
assert set(actual_wheels) == set(expected_wheels)
|
|
|
|
|
|
project_with_a_failing_test = test_projects.new_c_project()
|
|
project_with_a_failing_test.files["test/spam_test.py"] = r"""
|
|
from unittest import TestCase
|
|
|
|
class TestSpam(TestCase):
|
|
def test_something(self):
|
|
self.fail('this test is supposed to fail')
|
|
"""
|
|
|
|
|
|
def test_failing_test(tmp_path):
|
|
"""Ensure a failing test causes cibuildwheel to error out and exit"""
|
|
project_dir = tmp_path / "project"
|
|
output_dir = tmp_path / "output"
|
|
project_with_a_failing_test.generate(project_dir)
|
|
|
|
with pytest.raises(subprocess.CalledProcessError):
|
|
utils.cibuildwheel_run(
|
|
project_dir,
|
|
output_dir=output_dir,
|
|
add_env={
|
|
"CIBW_TEST_REQUIRES": "pytest",
|
|
"CIBW_TEST_COMMAND": f"{utils.invoke_pytest()} ./test",
|
|
# CPython 3.8 when running on macOS arm64 is unusual. The build
|
|
# always runs in x86_64, so the arm64 tests are not run. See
|
|
# #1169 for reasons why. That means the build succeeds, which
|
|
# we don't want. So we skip that build.
|
|
"CIBW_SKIP": "cp38-macosx_arm64",
|
|
},
|
|
)
|
|
|
|
assert len(list(output_dir.iterdir())) == 0
|
|
|
|
|
|
@pytest.mark.parametrize("test_runner", ["pytest", "unittest"])
|
|
def test_bare_pytest_invocation(tmp_path: Path, test_runner: str) -> None:
|
|
"""Check that if a user runs a bare test suite, it runs in the project folder"""
|
|
project_dir = tmp_path / "project"
|
|
project_with_a_test.generate(project_dir)
|
|
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_TEST_REQUIRES": "pytest" if test_runner == "pytest" else "",
|
|
"CIBW_TEST_COMMAND": (
|
|
# pytest fails on GraalPy 24.2.0 on Windows so we skip it there
|
|
# until https://github.com/oracle/graalpython/issues/490 fixed
|
|
"graalpy.exe -c 1 || python -m pytest"
|
|
if test_runner == "pytest"
|
|
else "python -m unittest discover test spam_test.py"
|
|
),
|
|
},
|
|
)
|
|
|
|
# check that we got the right wheels
|
|
expected_wheels = utils.expected_wheels("spam", "0.1.0")
|
|
assert set(actual_wheels) == set(expected_wheels)
|
|
|
|
|
|
def test_test_sources(tmp_path):
|
|
project_dir = tmp_path / "project"
|
|
project_with_a_test.generate(project_dir)
|
|
|
|
# build and test the wheels in the test cwd, after copying in the test sources.
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_TEST_REQUIRES": "pytest",
|
|
# pytest fails on GraalPy 24.2.0 on Windows so we skip it there
|
|
# until https://github.com/oracle/graalpython/issues/490 is fixed
|
|
"CIBW_TEST_COMMAND_WINDOWS": "where graalpy || pytest",
|
|
"CIBW_TEST_COMMAND": utils.invoke_pytest(),
|
|
"CIBW_TEST_SOURCES": "test",
|
|
},
|
|
)
|
|
|
|
# also check that we got the right wheels
|
|
expected_wheels = utils.expected_wheels("spam", "0.1.0")
|
|
assert set(actual_wheels) == set(expected_wheels)
|
|
|
|
|
|
def test_test_environment(tmp_path):
|
|
project_dir = tmp_path / "project"
|
|
test_projects.new_c_project().generate(project_dir)
|
|
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_env={
|
|
"CIBW_TEST_ENVIRONMENT": "MYVAR=somevalue PYTHONSAFEPATH=",
|
|
"CIBW_TEST_COMMAND": "python -c \"import os; assert os.environ.get('MYVAR') == 'somevalue'; assert os.environ.get('PYTHONSAFEPATH') == ''\"",
|
|
},
|
|
)
|
|
# also check that we got the right wheels
|
|
expected_wheels = utils.expected_wheels("spam", "0.1.0")
|
|
assert set(actual_wheels) == set(expected_wheels)
|