rekado pushed a commit to branch python-team
in repository guix.
commit a688230bc25dea5b3c0ff1f1de80dc02e6afd80b
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 | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index b25ee9e83a..acc75995d8 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1756,6 +1756,12 @@ same arguments.")
(base32
"1psf5dqxvc38qzxvc305mkg5xpdmdkbkkfiyqlmdnkgh7z5dx025"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ ;; Fails with OSError: cannot send to <Channel id=1 closed>
+ ;; on foreign distribution.
+ '(list "-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")