mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: python-keras: Enable parallel tests.
* (python-keras)[phases]: Delete trailing #t. {check}: Honor TESTS?. Run the tests in parallel. Disable PEP8 lint.
This commit is contained in:
parent
92c3d1c3d0
commit
11e7a534f7
1 changed files with 17 additions and 16 deletions
|
@ -2521,24 +2521,26 @@ (define-public python-keras
|
||||||
(delete-file "keras/backend/theano_backend.py")
|
(delete-file "keras/backend/theano_backend.py")
|
||||||
(delete-file "keras/backend/cntk_backend.py")
|
(delete-file "keras/backend/cntk_backend.py")
|
||||||
(delete-file "tests/keras/backend/backend_test.py")
|
(delete-file "tests/keras/backend/backend_test.py")
|
||||||
|
|
||||||
;; FIXME: This doesn't work because Tensorflow is missing the
|
;; FIXME: This doesn't work because Tensorflow is missing the
|
||||||
;; coder ops library.
|
;; coder ops library.
|
||||||
(delete-file "tests/keras/test_callbacks.py")
|
(delete-file "tests/keras/test_callbacks.py")))
|
||||||
#t))
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
;; These tests attempt to download data files from the internet.
|
(when tests?
|
||||||
(delete-file "tests/integration_tests/test_datasets.py")
|
;; These tests attempt to download data files from the internet.
|
||||||
(delete-file "tests/integration_tests/imagenet_utils_test.py")
|
(delete-file "tests/integration_tests/test_datasets.py")
|
||||||
;; Backport https://github.com/keras-team/keras/pull/12479.
|
(delete-file "tests/integration_tests/imagenet_utils_test.py")
|
||||||
(substitute* "tests/keras/engine/test_topology.py"
|
;; Backport https://github.com/keras-team/keras/pull/12479.
|
||||||
(("np.ones\\(\\(3, 2\\)\\)")
|
(substitute* "tests/keras/engine/test_topology.py"
|
||||||
"1."))
|
(("np.ones\\(\\(3, 2\\)\\)")
|
||||||
(invoke "python" "-m" "pytest"
|
"1."))
|
||||||
;; The following test fail only in the build container;
|
(invoke "python" "-m" "pytest" "tests"
|
||||||
;; skip it.
|
"-p" "no:pep8"
|
||||||
"-k" "not test_selu"))))))
|
;; 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
|
(propagated-inputs
|
||||||
`(("python-h5py" ,python-h5py)
|
`(("python-h5py" ,python-h5py)
|
||||||
("python-keras-applications" ,python-keras-applications)
|
("python-keras-applications" ,python-keras-applications)
|
||||||
|
@ -2565,7 +2567,6 @@ (define-public python-keras
|
||||||
and capable of running on top of TensorFlow. It was developed with a focus on
|
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
|
enabling fast experimentation. Use Keras if you need a deep learning library
|
||||||
that:
|
that:
|
||||||
|
|
||||||
@itemize
|
@itemize
|
||||||
@item Allows for easy and fast prototyping (through user friendliness,
|
@item Allows for easy and fast prototyping (through user friendliness,
|
||||||
modularity, and extensibility).
|
modularity, and extensibility).
|
||||||
|
|
Loading…
Reference in a new issue