Skip to content
Snippets Groups Projects
Unverified Commit 391fc11f authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

gnu: python2-scikit-learn: Fix check phase.

* gnu/packages/machine-learning.scm (python2-scikit-learn)[arguments]:
Override check phase to disable broken tests and pass environment variables.
parent 26358ac5
No related branches found
No related tags found
No related merge requests found
...@@ -750,7 +750,24 @@ (define-public python-scikit-learn ...@@ -750,7 +750,24 @@ (define-public python-scikit-learn
(license license:bsd-3))) (license license:bsd-3)))
(define-public python2-scikit-learn (define-public python2-scikit-learn
(package-with-python2 python-scikit-learn)) (let ((parent (package-with-python2 python-scikit-learn)))
(package (inherit parent)
(arguments
(substitute-keyword-arguments (package-arguments parent)
((#:phases phases)
`(modify-phases ,phases
(replace 'check
(lambda _
;; Restrict OpenBLAS threads to prevent segfaults while testing!
(setenv "OPENBLAS_NUM_THREADS" "1")
;; Some tests expect to be able to write to HOME.
(setenv "HOME" "/tmp")
;; Disable tests that require network access
(delete-file "sklearn/datasets/tests/test_kddcup99.py")
(delete-file "sklearn/datasets/tests/test_mldata.py")
(delete-file "sklearn/datasets/tests/test_rcv1.py")
(invoke "pytest" "sklearn")
#t)))))))))
(define-public python-autograd (define-public python-autograd
(let* ((commit "442205dfefe407beffb33550846434baa90c4de7") (let* ((commit "442205dfefe407beffb33550846434baa90c4de7")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment