rekado pushed a commit to branch python-team
in repository guix.
commit 062821ecaf4a7e62e337ee6e234897643353fe20
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Tue Jul 25 18:26:58 2023 +0200
gnu: python-pytest-xdist: Disable failing test.
* gnu/packages/check.scm (python-pytest-xdist)[arguments]: Skip failing
test.
---
gnu/packages/check.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index bc64c836a4..d15e472182 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1636,7 +1636,10 @@ same arguments.")
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv"
- "-n" (number->string (parallel-job-count)))))))))
+ "-n" (number->string (parallel-job-count))
+ ;; Fails with OSError: cannot send to <Channel id=1
closed>
+ ;; on foreign distribution.
+ "-k" "not
test_internal_errors_propagate_to_controller")))))))
(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")