lilyp pushed a commit to branch emacs-team
in repository guix.
commit fb1d7f69602c0755741a614aad22232c69577872
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Mar 20 11:08:59 2025 +0100
gnu: emacs-pass: Disable tests.
* gnu/packages/emacs-xyz.scm (emacs-pass)
[arguments]{tests?}: Disable them.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 041a19920b..ca3c8304de 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -24851,6 +24851,15 @@ needed.")
(sha256
(base32 "0jc8j421mlflspg24jvrqc2n3y5n3cpk3hjy560il8g36xi1049p"))))
(build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f ; Tests require a tty.
+ #:test-command
+ #~(apply list "emacs"
+ (append
+ (apply append
+ (map (lambda (file) (list "-l" file))
+ (find-files "." "\\.el")))
+ (list "-f" "ert-run-tests-batch-and-exit")))))
(propagated-inputs
(list emacs-password-store emacs-f))
(home-page "https://github.com/NicolasPetton/pass")