Skip to content

Commit 37030ca

Browse files
committed
🐛 fix(test): add i686 to known ISAs
The test_py_info_machine_property test fails on i686 platforms because that architecture wasn't included in the known_isas set. Fixes #41
1 parent 30f67d2 commit 37030ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/py_info/test_py_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def test_py_info_machine_property() -> None:
338338
assert machine is not None
339339
assert isinstance(machine, str)
340340
assert len(machine) > 0
341-
known_isas = {"arm64", "x86_64", "x86", "ppc64le", "ppc64", "s390x", "riscv64"}
341+
known_isas = {"arm64", "i686", "ppc64", "ppc64le", "riscv64", "s390x", "x86", "x86_64"}
342342
assert machine in known_isas, f"unexpected machine value: {machine}"
343343

344344

0 commit comments

Comments
 (0)