From 8d71ecace250eeb20da505ac886b084996c3b099 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys <6032823+jack1142@users.noreply.github.com> Date: Sun, 24 Jul 2022 13:38:48 +0200 Subject: [PATCH] Elaborate on why arm64 platform is skipped for failing test test Co-authored-by: Joe Rickerby --- test/test_testing.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_testing.py b/test/test_testing.py index c33285bd..fd9f1b6a 100644 --- a/test/test_testing.py +++ b/test/test_testing.py @@ -142,7 +142,10 @@ def test_failing_test(tmp_path): # problems with this, so let's check that. "CIBW_MANYLINUX_I686_IMAGE": "manylinux1", "CIBW_MANYLINUX_X86_64_IMAGE": "manylinux1", - # tests don't run on CPython 3.8 when running on macOS arm64 + # 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", }, )