lilyp pushed a commit to branch emacs-team in repository guix. commit 751b55d275f0a7d8021b06eec9778b5f98336ade Author: Liliana Marie Prikler <liliana.prik...@gmail.com> 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 50145df570..33d8b2df66 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3808,6 +3808,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