From 93134e21ae66ee040d0a95830b481e3aa70a2d33 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 25 Nov 2022 17:02:09 +0000 Subject: [PATCH] Fix issue with non-failing test on cp38/arm64 --- test/test_testing.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_testing.py b/test/test_testing.py index 58bad4b8..17eab446 100644 --- a/test/test_testing.py +++ b/test/test_testing.py @@ -167,6 +167,9 @@ def test_bare_pytest_invocation(tmp_path: Path, capfd: pytest.CaptureFixture[str add_env={ "CIBW_TEST_REQUIRES": "pytest", "CIBW_TEST_COMMAND": "python -m pytest", + # Skip CPython 3.8 on macOS arm64, see comment above in + # 'test_failing_test' + "CIBW_SKIP": "cp38-macosx_arm64", }, )