gnu: python-keras: Skip a flaky test.
* gnu/packages/machine-learning.scm (python-keras) [phases]{check}: Also skip the test_stateful_metrics test.
This commit is contained in:
parent
7b38a96829
commit
8b11b4a829
1 changed files with 8 additions and 3 deletions
|
@ -2538,9 +2538,14 @@ with image data, text data, and sequence data.")
|
||||||
"-p" "no:pep8"
|
"-p" "no:pep8"
|
||||||
;; FIXME: python-build-system lacks PARALLEL-TESTS?
|
;; FIXME: python-build-system lacks PARALLEL-TESTS?
|
||||||
"-n" (number->string (parallel-job-count))
|
"-n" (number->string (parallel-job-count))
|
||||||
;; The following test fail only in the build container;
|
"-k"
|
||||||
;; skip it.
|
(string-append
|
||||||
"-k" "not test_selu")))))))
|
;; The following test fails only in the build
|
||||||
|
;; container; skip it.
|
||||||
|
"not test_selu "
|
||||||
|
;; The following test was found flaky and removed in
|
||||||
|
;; recent versions.
|
||||||
|
"and not test_stateful_metrics"))))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-h5py" ,python-h5py)
|
`(("python-h5py" ,python-h5py)
|
||||||
("python-keras-applications" ,python-keras-applications)
|
("python-keras-applications" ,python-keras-applications)
|
||||||
|
|
Reference in a new issue