apteryx pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit ad3da8d64d12858f55be5cb23f0ffb94eeb6e872 Author: Maxim Cournoyer <[email protected]> AuthorDate: Mon Oct 11 23:42:40 2021 -0400 gnu: python-keras: Skip a flaky test. * gnu/packages/machine-learning.scm (python-keras) [phases]{check}: Also skip the test_stateful_metrics test. --- gnu/packages/machine-learning.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 85460ae..88ce23c 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -2538,9 +2538,14 @@ with image data, text data, and sequence data.") "-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)
