guix_mirror_bot pushed a commit to branch emacs-team
in repository guix.
commit db6a30bbee505134142abed50708f7b3fae58170
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 1f7ad8d43b..e489636a27 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3957,6 +3957,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