mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -05:00
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 @@ (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)
|
||||
|
|
Loading…
Reference in a new issue