guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 99e70c393885cfe6e136da960ad8ff0edaa9ea0a
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sat Apr 5 10:43:43 2025 +0200
gnu: emacs-reformatter: Handle tests.
* gnu/packages/emacs-xyz.scm (emacs-reformatter)[arguments]:
Add #:test-command. Skip tests.
---
gnu/packages/emacs-xyz.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index cc02e53a33..9440e7f7c9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3983,6 +3983,8 @@ provides basic supports for syntax highlighting and
indentation.")
(sha256
(base32 "1vm030lz489vjx1dz1jrnj7zd2b43y98rffdxyshfvxbfv1cbmyk"))))
(build-system emacs-build-system)
+ (arguments (list #:tests? #f ; XXX: 4/4 tests broken
+ #:test-command #~(list "make" "test" "INIT_PACKAGES=t")))
(home-page "https://github.com/purcell/reformatter.el")
(synopsis "Define commands which run reformatters on the current buffer")
(description