1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Christian Kastner <ckk@kvr.at>
Date: Thu, 10 Feb 2022 11:38:44 +0100
Subject: Skip CPU architecture tests
The test checks for a small set of CPU architectures (or rather families) but
Debian supports far more, so the test would fail on all those not listed. Case
in point: fails on QEMU unless the correct CPU is chosen.
Forwarded: not-needed
---
tests/test_threadpoolctl.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/test_threadpoolctl.py b/tests/test_threadpoolctl.py
index 250cf8e..88f8ca5 100644
--- a/tests/test_threadpoolctl.py
+++ b/tests/test_threadpoolctl.py
@@ -581,6 +581,7 @@ def test_command_line_import_flag():
assert "WARNING: could not import scipy.linalg" not in warnings
+@pytest.mark.skip("Debian officially supports far more architectures.")
def test_architecture():
expected_openblas_architectures = (
# XXX: add more as needed by CI or developer laptops
|