diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-07 13:06:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-07 13:06:37 +0100 |
commit | ad1704604000d8932896238e3d8053836041c06b (patch) | |
tree | 1211187eb5fdd72a723dbbb40725e1eeb1086716 | |
parent | 899121f4d6ee596df522e4e7e729e07fa6ae84d6 (diff) | |
download | guix-ad1704604000d8932896238e3d8053836041c06b.tar.gz guix-ad1704604000d8932896238e3d8053836041c06b.zip |
gnu: python-dask: Add missing input for tests.
* gnu/packages/python-xyz.scm (python-dask)[native-inputs]: Add
python-pytest-rerunfailures.
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4345077e98..8aee3352aa 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22776,7 +22776,8 @@ decisions with any given backend.") ("python-pyyaml" ,python-pyyaml))) (native-inputs `(("python-pytest" ,python-pytest) - ("python-pytest-runner" ,python-pytest-runner))) + ("python-pytest-runner" ,python-pytest-runner) + ("python-pytest-rerunfailures" ,python-pytest-rerunfailures))) (home-page "https://github.com/dask/dask/") (synopsis "Parallel computing with task scheduling") (description |