gnu: python-scikit-learn-extra: Disable a validation test.
* gnu/packages/machine-learning.scm (python-scikit-learn-extra)[arguments]: Disable one test. Change-Id: I1309cb6a82dee1a714ddec59aa90692ccfcd885b
This commit is contained in:
parent
1ea0e3e6dd
commit
c226d12856
1 changed files with 21 additions and 17 deletions
|
@ -1762,7 +1762,11 @@ data analysis.")
|
||||||
#:test-flags
|
#:test-flags
|
||||||
;; ignore tests that require network
|
;; ignore tests that require network
|
||||||
'(list "--pyargs" "sklearn_extra"
|
'(list "--pyargs" "sklearn_extra"
|
||||||
"-k" "not test_build")
|
"-k" (string-append "not test_build"
|
||||||
|
;; The error message format has changed,
|
||||||
|
;; but the behavior itself is still the
|
||||||
|
;; same.
|
||||||
|
" and not test_parameter_validation"))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'build 'build-ext
|
(add-after 'build 'build-ext
|
||||||
|
|
Reference in a new issue