lilyp pushed a commit to branch emacs-team
in repository guix.
commit 06d52d6919ad74d4c87ffb5f871094b533021aca
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Thu Mar 13 20:42:59 2025 +0100
gnu: emacs-evil-smartparens: Handle tests.
* gnu/packages/emacs-xyz.scm (emacs-evil-smartparens)[arguments]:
Add #:test-command. Disable tests.
[native-inputs]: Add emacs-evil-surround.
---
gnu/packages/emacs-xyz.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 08e6184083..ba6afdbdc3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -24641,8 +24641,15 @@ evil mode using @kbd{%}. It is a port of
@code{matchit} for Vim.")
(sha256
(base32 "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl"))))
(build-system emacs-build-system)
+ (arguments (list #:tests? #f ; XXX: 39/41 test failures
+ #:test-command
+ #~(list "emacs" "--batch" "-L" "."
+ "-L" "tests/evil-tests"
+ "-l" "tests/evil-smartparens-tests.el"
+ "-f" "ert-run-tests-batch-and-exit")))
(propagated-inputs
(list emacs-evil emacs-smartparens))
+ (native-inputs (list emacs-evil-surround))
(home-page "https://github.com/expez/evil-smartparens")
(synopsis "Emacs Evil integration for Smartparens")
(description "@code{emacs-evil-smartparens} is an Emacs minor mode which