guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e554ed7470829aec0dfd9e94820662a7c4d2a3dd
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jun 19 09:58:53 2025 +0200
gnu: python-stestr: Rely on its own test-backend.
* gnu/packages/python-check.scm (python-stestr)[arguments]{phases}:
Remove keyword.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-check.scm | 12 ++----------
1 file changed, 2 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 65b69477c9..cb4215ce4e 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3660,19 +3660,11 @@ possibly work.")
(arguments
(list
#:test-flags
- ;; Two tets fail.
+ ;; XXX: Two tests fail.
#~(list "--exclude-regex" (string-join
(list "test_initialise_expands_user_directory"
"test_open_expands_user_directory")
- "|"))
- #:phases
- #~(modify-phases %standard-phases
- ;; TODO: Implement in pypproject-build-system's test-backends.
- (replace 'check
- (lambda* (#:key tests? test-flags #:allow-other-keys)
- (when tests?
- (let ((stestr (string-append #$output "/bin/stestr")))
- (apply invoke stestr "run" test-flags))))))))
+ "|"))))
(native-inputs
(list python-ddt
python-iso8601