guix_mirror_bot pushed a commit to branch emacs-team
in repository guix.
commit 1d396e3256ec8a7be39ba2d448d751954072376f
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Thu Mar 13 20:43:00 2025 +0100
gnu: emacs-edn: Handle tests.
* gnu/packages/emacs-xyz.scm (emacs-edn)[arguments]: Add #:test-command.
Disable tests.
---
gnu/packages/emacs-xyz.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fdcabd374d..63685d8c47 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -39633,6 +39633,11 @@ It also provides original Helm commands:
@command{helm-cider-spec},
(base32
"1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"))))
(build-system emacs-build-system)
+ (arguments (list #:tests? #f ; XXX: void-variable peg-stack
+ #:test-command
+ #~(list "emacs" "--batch" "-L" "." "-L" "tests"
+ "-l" "tests/edn-tests"
+ "-f" "ert-run-tests-batch-and-exit")))
(propagated-inputs
(list emacs-peg))
(synopsis "Read and write EDN from Elisp")