lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit af70ac7b3a444d0b6ee21ec6547a2a6676846358
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Sat Jan 1 15:48:57 2022 +0100
gnu: tuir: Disable failing tests.
* gnu/packages/syndication.scm (tuir)[arguments]: Remove custom 'check
phase, disable failing tests.
---
gnu/packages/syndication.scm | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 0417737d7d..08d00d910b 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -465,14 +465,11 @@ a simple interface that makes it easy to organize and
browse feeds.")
"06xb030ibphbrz4nsxm8mh3g60ld8xfp6kc3j6vi1k4ls5s4h79i"))))
(build-system python-build-system)
(arguments
- `(#:phases
+ ;; Test depends on wallclock and can be wrong.
+ `(#:test-flags '("-vv" "-k" "not test_content_humanize_timestamp")
+ #:phases
(modify-phases %standard-phases
- (delete 'sanity-check) ; Tries to read environment variables.
- (replace 'check
- (lambda* (#:key tests? inputs outputs #:allow-other-keys)
- (add-installed-pythonpath inputs outputs)
- (when tests?
- (invoke "pytest")))))))
+ (delete 'sanity-check)))) ; Tries to read environment
variables.
(inputs
(list python-beautifulsoup4 python-decorator python-kitchen
python-requests python-six))