[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
70/203: gnu: python-keras: Enable parallel tests.
From: |
guix-commits |
Subject: |
70/203: gnu: python-keras: Enable parallel tests. |
Date: |
Wed, 3 Nov 2021 21:10:02 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 4ea7eea1a076ce32ce4b791847ff6b85cb1758f2
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Oct 8 22:34:32 2021 -0400
gnu: python-keras: Enable parallel tests.
* (python-keras)[phases]: Delete trailing #t.
{check}: Honor TESTS?. Run the tests in parallel. Disable PEP8 lint.
---
gnu/packages/machine-learning.scm | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 11c9b02..85460ae 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -2521,24 +2521,26 @@ with image data, text data, and sequence data.")
(delete-file "keras/backend/theano_backend.py")
(delete-file "keras/backend/cntk_backend.py")
(delete-file "tests/keras/backend/backend_test.py")
-
;; FIXME: This doesn't work because Tensorflow is missing the
;; coder ops library.
- (delete-file "tests/keras/test_callbacks.py")
- #t))
+ (delete-file "tests/keras/test_callbacks.py")))
(replace 'check
- (lambda _
- ;; These tests attempt to download data files from the internet.
- (delete-file "tests/integration_tests/test_datasets.py")
- (delete-file "tests/integration_tests/imagenet_utils_test.py")
- ;; Backport https://github.com/keras-team/keras/pull/12479.
- (substitute* "tests/keras/engine/test_topology.py"
- (("np.ones\\(\\(3, 2\\)\\)")
- "1."))
- (invoke "python" "-m" "pytest"
- ;; The following test fail only in the build container;
- ;; skip it.
- "-k" "not test_selu"))))))
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ ;; These tests attempt to download data files from the internet.
+ (delete-file "tests/integration_tests/test_datasets.py")
+ (delete-file "tests/integration_tests/imagenet_utils_test.py")
+ ;; Backport https://github.com/keras-team/keras/pull/12479.
+ (substitute* "tests/keras/engine/test_topology.py"
+ (("np.ones\\(\\(3, 2\\)\\)")
+ "1."))
+ (invoke "python" "-m" "pytest" "tests"
+ "-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")))))))
(propagated-inputs
`(("python-h5py" ,python-h5py)
("python-keras-applications" ,python-keras-applications)
@@ -2565,7 +2567,6 @@ with image data, text data, and sequence data.")
and capable of running on top of TensorFlow. It was developed with a focus on
enabling fast experimentation. Use Keras if you need a deep learning library
that:
-
@itemize
@item Allows for easy and fast prototyping (through user friendliness,
modularity, and extensibility).
- 44/203: gnu: gst-plugins-bad: Update to 1.19.2., (continued)
- 44/203: gnu: gst-plugins-bad: Update to 1.19.2., guix-commits, 2021/11/03
- 26/203: gnu: gst-plugins-bad: Add missing inputs to enable more features., guix-commits, 2021/11/03
- 48/203: gnu: python-gst: Update to 1.19.2., guix-commits, 2021/11/03
- 47/203: gnu: gst-editing-services: Update to 1.19.2., guix-commits, 2021/11/03
- 39/203: gnu: gstreamer-docs: Update to 1.19.2., guix-commits, 2021/11/03
- 52/203: Revert commits made to resolve a gdk-pixbuf+svg propagation issue., guix-commits, 2021/11/03
- 53/203: gnu: googletest: Update to 1.11.0., guix-commits, 2021/11/03
- 66/203: gnu: gst-editing-services: Update to 1.18.5., guix-commits, 2021/11/03
- 16/203: gnu: cogl: Propagate gdk-pixbuf+svg rather than gdk-pixbuf., guix-commits, 2021/11/03
- 62/203: gnu: gst-plugins-good: Update to 1.18.5., guix-commits, 2021/11/03
- 70/203: gnu: python-keras: Enable parallel tests.,
guix-commits <=
- 72/203: gnu: libnice: Update to 0.1.18-0.47a9633 and disable test-bind test., guix-commits, 2021/11/03
- 65/203: gnu: gst-libav: Update to 1.18.5., guix-commits, 2021/11/03
- 54/203: gnu: abseil-cpp: Remove googletest patch., guix-commits, 2021/11/03
- 56/203: gnu: mozjs-78: Update to 78.15.0., guix-commits, 2021/11/03
- 55/203: gnu: abseil-cpp: Update to 20210324.2., guix-commits, 2021/11/03
- 59/203: Revert gstreamer update to 1.19.2., guix-commits, 2021/11/03
- 71/203: gnu: dbus-c++: Fix build., guix-commits, 2021/11/03
- 67/203: gnu: python-gst: Update to 1.18.5., guix-commits, 2021/11/03
- 74/203: gnu: python-keras: Skip a flaky test., guix-commits, 2021/11/03
- 77/203: gnu: tzdata: Update to 2021e., guix-commits, 2021/11/03