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:
Maxim Cournoyer 2021-10-11 23:42:40 -04:00
parent 7b38a96829
commit 8b11b4a829
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -2538,9 +2538,14 @@ (define-public python-keras
"-p" "no:pep8"
;; FIXME: python-build-system lacks PARALLEL-TESTS?
"-n" (number->string (parallel-job-count))
;; The following test fail only in the build container;
;; skip it.
"-k" "not test_selu")))))))
"-k"
(string-append
;; 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
`(("python-h5py" ,python-h5py)
("python-keras-applications" ,python-keras-applications)