mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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:
parent
123c880fe9
commit
a6b6d1bd6a
1 changed files with 5 additions and 2 deletions
|
@ -1629,8 +1629,11 @@ (define-public python-scikit-learn
|
|||
(list
|
||||
#:test-flags
|
||||
'(list "-m" "not network"
|
||||
;; This test tries to access the internet.
|
||||
"-k" "not test_load_boston_alternative")
|
||||
"-k" (string-append
|
||||
;; This test tries to access the internet.
|
||||
"not test_load_boston_alternative"
|
||||
;; DID NOT RAISE <class 'ValueError'>
|
||||
" and not test_singular_matrix"))
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-before 'build 'configure
|
||||
|
|
Loading…
Reference in a new issue