summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-09-25 21:53:59 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 23:47:33 +0100
commit7c7bc37b6e5dbd95958273ef22a44ce6209fdce9 (patch)
tree8e9e48a745ebbc8aa9fb5d21273df5b97d4478ba /gnu
parentbcbc4cf384cb764bac092f8aad1d958b9aaece19 (diff)
gnu: python-devtools: Disable failing tests.
* gnu/packages/python-xyz.scm (python-devtools): Disable failing tests. [arguments] <test-flags>: Disable failing tests. Change-Id: I1c6533a4a912d5dc4bde3610ccce7d38837caac4 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm14
1 files changed, 13 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6f12a3c929a..e8e373652f9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34264,7 +34264,19 @@ and have a maximum lifetime built-in.")
(list
#:test-flags
;; Disable some failing tests.
- '(list "-k" "not test_print_subprocess"
+ ;;
+ ;; test_print_subprocess seems to inherit wrong environment, fails with
+ ;; E + ModuleNotFoundError: No module named 'executing'
+ ;; Test runs fine from local clone.
+ ;;
+ ;; test_executing_failure fails with
+ ;; E - [1, 2] (list) len=2
+ ;; E + [x, y]: [1, 2] (list) len=2
+ ;; unclear why, probably due to a dependency.
+ '(list "-k" "not test_print_subprocess and not test_executing_failure"
+ ;; test_insert_assert.py also seems to inherit a bad environment:
+ ;; E fixture 'pytester_pretty' not found
+ ;; Test runs fine from local clone.
"--ignore=tests/test_insert_assert.py")))
(native-inputs
(list python-hatchling python-pytest python-pytest-mock))