[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: python-pytest-xdist: Disable failing test.
From: |
guix-commits |
Subject: |
07/09: gnu: python-pytest-xdist: Disable failing test. |
Date: |
Fri, 16 Feb 2024 07:27:24 -0500 (EST) |
lbraun pushed a commit to branch python-team
in repository guix.
commit 22651f11af9ffe800a823b7e6757e7468346c1b8
Author: Lars-Dominik Braun <lars@6xq.net>
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 15c1204961..c3319795a9 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1634,7 +1634,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")
- branch python-team updated (26aee3be22 -> 6831dfc58b), guix-commits, 2024/02/16
- 02/09: build-system/python: Ignore symlinks when changing mtime., guix-commits, 2024/02/16
- 04/09: gnu: sssd: Import ensure-no-mtimes-pre-1980., guix-commits, 2024/02/16
- 01/09: build-system/pyproject: Use python-sans-pip-wrapper as default-python., guix-commits, 2024/02/16
- 03/09: gnu: criu: Remove temporary workaround., guix-commits, 2024/02/16
- 05/09: guix: toml: Add TOML parser., guix-commits, 2024/02/16
- 06/09: build-system/pyproject: Use TOML parser., guix-commits, 2024/02/16
- 07/09: gnu: python-pytest-xdist: Disable failing test.,
guix-commits <=
- 08/09: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/02/16
- 09/09: doc: Document new options for pyproject-build-system., guix-commits, 2024/02/16