guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f185860d4a6470d052544c4ba40ccda13c2aa140
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 29 17:40:14 2025 +0000
gnu: python-fbpca: Fix tests.
* gnu/packages/python-science.scm (python-fbpca)[arguments]
<test-flags>: Skip one test.
Change-Id: I98ea94a1986e465ad41e6d0099ad4a1f45506c8e
---
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 e2f99a5ebf..ea5f91f1a1 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))