Skip to content

Commit 7524032

Browse files
authored
🐛 fix(test): add loongarch64 to known ISAs (#50)
1 parent 37dc67f commit 7524032

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", "i686", "ppc64", "ppc64le", "riscv64", "s390x", "x86", "x86_64"}
341+
known_isas = {"arm64", "i686", "loongarch64", "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)