From 37030cabdad3103663dcf039315fb7a36a538a28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Fri, 6 Mar 2026 15:53:10 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(test):=20add=20i686=20to=20k?= =?UTF-8?q?nown=20ISAs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test_py_info_machine_property test fails on i686 platforms because that architecture wasn't included in the known_isas set. Fixes #41 --- tests/py_info/test_py_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/py_info/test_py_info.py b/tests/py_info/test_py_info.py index 2232d9e..caff471 100644 --- a/tests/py_info/test_py_info.py +++ b/tests/py_info/test_py_info.py @@ -338,7 +338,7 @@ def test_py_info_machine_property() -> None: assert machine is not None assert isinstance(machine, str) assert len(machine) > 0 - known_isas = {"arm64", "x86_64", "x86", "ppc64le", "ppc64", "s390x", "riscv64"} + known_isas = {"arm64", "i686", "ppc64", "ppc64le", "riscv64", "s390x", "x86", "x86_64"} assert machine in known_isas, f"unexpected machine value: {machine}"