diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-27 22:21:12 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-27 22:51:59 +0000 |
commit | 2d3a898d89fe172283f94a55d502330f85b50e6e (patch) | |
tree | d35851e3391479119b720a0add068f8539610818 /gnu/packages | |
parent | 8019bcad0b49e2170820f96a13d1fca2c86b5c5e (diff) | |
download | guix-2d3a898d89fe172283f94a55d502330f85b50e6e.tar.gz guix-2d3a898d89fe172283f94a55d502330f85b50e6e.zip |
gnu: python-photutils: Speed up tests
* gnu/packages/astronomy.scm (python-photutils): Enable parallel
tests to speed them up.
[arguments] <#:test-flags>: Add it with "-n" option.
[native-inputs]: Add python-pytest-xdist.
Change-Id: I3eff6c4ac4f6c3d8367179e1e8cdf55bbf1c03cc
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/astronomy.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index a3dca00664..111599f442 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2217,6 +2217,8 @@ can be described by @acronym{WCS, World Coordinate System} translations.") (build-system pyproject-build-system) (arguments (list + #:test-flags + #~(list "-n" "auto") #:phases #~(modify-phases %standard-phases ;; This file is opened in both install and check phases. @@ -2247,6 +2249,7 @@ can be described by @acronym{WCS, World Coordinate System} translations.") (list python-cython python-extension-helpers python-pytest-astropy + python-pytest-xdist python-semantic-version python-setuptools-scm)) (home-page "https://github.com/astropy/photutils") |