gnu: python-scikit-learn: Disable one test.

This test fails with the upgrade of scipy.

* gnu/packages/machine-learning.scm (python-scikit-learn)[arguments]: Disable
test_singular_matrix test.

Change-Id: I47627403826bb5c52f4d578399c7cabaa3f8838d
This commit is contained in:
Ricardo Wurmus 2024-01-23 12:43:03 +01:00
parent 123c880fe9
commit a6b6d1bd6a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1629,8 +1629,11 @@ (define-public python-scikit-learn
(list
#:test-flags
'(list "-m" "not network"
"-k" (string-append
;; This test tries to access the internet.
"-k" "not test_load_boston_alternative")
"not test_load_boston_alternative"
;; DID NOT RAISE <class 'ValueError'>
" and not test_singular_matrix"))
#:phases
'(modify-phases %standard-phases
(add-before 'build 'configure