mbakke pushed a commit to branch core-updates
in repository guix.
commit 429bbef8496cb2e21509f162de21496e446f78fc
Author: Marius Bakke <[email protected]>
AuthorDate: Fri Aug 12 18:57:56 2022 +0200
gnu: python-pytest-xdist: Add extra test input, don't propagate pytest.
* gnu/packages/check.scm (python-pytest-xdist)[native-inputs]: Add
PYTHON-FILELOCK. While at it, add PYTHON-PYTEST from ...
[propagated-inputs]: ... here.
---
gnu/packages/check.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 8a83c88a04..6653326c18 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1331,9 +1331,8 @@ same arguments.")
(when tests?
(invoke "pytest" "-vv"
"-n" (number->string (parallel-job-count)))))))))
- (native-inputs (list python-setuptools-scm))
- (propagated-inputs (list python-execnet python-pytest python-py
- python-pytest-forked))
+ (native-inputs (list python-setuptools-scm python-filelock python-pytest))
+ (propagated-inputs (list python-execnet python-pytest-forked))
(home-page "https://github.com/pytest-dev/pytest-xdist")
(synopsis
"Plugin for py.test with distributed testing and loop-on-failing modes")