mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: python-glymur: Speed up tests.
* gnu/packages/python-xyz.scm (python-glymur): Enable parallel tests to speed them up. [arguments] <#:test-flags>: Add it with "-n" option. [native-inputs]: Add python-pytest-xdist. Change-Id: Ied066330cc24a50b47307cefb2694675be8af0a4
This commit is contained in:
parent
2962c0f025
commit
2de864d204
1 changed files with 5 additions and 1 deletions
|
@ -1958,6 +1958,8 @@ (define-public python-glymur
|
|||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags
|
||||
#~(list "-n" "auto")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-library-locations
|
||||
|
@ -1983,7 +1985,9 @@ (define-public python-glymur
|
|||
;; which is patched above.
|
||||
(delete-file "tests/test_config.py"))))))
|
||||
(native-inputs
|
||||
(list python-pytest python-scikit-image))
|
||||
(list python-pytest
|
||||
python-pytest-xdist
|
||||
python-scikit-image))
|
||||
(inputs
|
||||
(list openjpeg ; glymur/lib/openjp2.py
|
||||
libtiff)) ; glymur/lib/tiff.py
|
||||
|
|
Loading…
Reference in a new issue