From 09407e20138e48c808c0338980ac0c4f43ab955d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 29 Dec 2025 17:40:14 +0000 Subject: [PATCH] gnu: python-fbpca: Fix tests. * gnu/packages/python-science.scm (python-fbpca)[arguments] : Skip one test. Change-Id: I98ea94a1986e465ad41e6d0099ad4a1f45506c8e Signed-off-by: Rutherther --- gnu/packages/python-science.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index e2f99a5ebf414ff55698fe0b1ad759c988c07af6..ea5f91f1a1e9385e9d8206d1b59eeb5c2c9b90e9 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -4394,7 +4394,11 @@ them.") "1lbjqhqsdmqk86lb86q3ywf7561zmdny1dfvgwqkyrkr4ij7f1hm")))) (build-system pyproject-build-system) (arguments - (list #:test-flags #~(list "fbpca.py"))) + (list + #:test-flags + ;; TypeError: 'dia_matrix' object is not subscriptable + #~(list "--deselect=fbpca.py::TestPCA::test_sparse" + "fbpca.py"))) (native-inputs (list python-pytest python-setuptools)) (propagated-inputs (list python-numpy python-scipy))