aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2023-07-25 18:26:58 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:15:42 +0000
commit0ce36a9cf36be8782c65375240d30958816b1df4 (patch)
tree38570469fc18ad4ae7d134cddb8f3c3c778bec86
parentefbce9a69a6dc5576ecfe8500c9e3834d629cf42 (diff)
downloadguix-0ce36a9cf36be8782c65375240d30958816b1df4.tar
guix-0ce36a9cf36be8782c65375240d30958816b1df4.tar.gz
gnu: python-pytest-xdist: Disable failing test.
* gnu/packages/check.scm (python-pytest-xdist)[arguments]: Skip failing test.
-rw-r--r--gnu/packages/check.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index a8276d16b1..6214fceb19 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2101,6 +2101,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")