lilyp pushed a commit to branch emacs-team in repository guix. commit 0a7fc3c11b8140b08514c668ee0c9542eeb2e852 Author: Liliana Marie Prikler <liliana.prik...@gmail.com> AuthorDate: Thu Mar 13 20:42:59 2025 +0100
gnu: emacs-m-buffer-el: Fix tests. * gnu/packages/emacs-xyz.scm (emacs-m-buffer-el)[arguments]: Add #:test-command. Remove unnecessary check phase. --- gnu/packages/emacs-xyz.scm | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0f531e4923..f44fffcf55 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27381,15 +27381,10 @@ mode.") "1sx76i59razwccvn6x7rx5a124bfyjw9fcbxf4gj7nsg33qiq809")))) (arguments (list - #:phases - #~(modify-phases %standard-phases - (add-before 'install 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "emacs" "--batch" "-L" "." - "-l" "test/m-buffer-test.el" - "-l" "test/m-buffer-at-test.el" - "-f" "ert-run-tests-batch-and-exit"))))))) + #:test-command #~(list "emacs" "--batch" "-L" "." + "-l" "test/m-buffer-test.el" + "-l" "test/m-buffer-at-test.el" + "-f" "ert-run-tests-batch-and-exit"))) (build-system emacs-build-system) (home-page "https://github.com/phillord/m-buffer-el") (synopsis "List oriented buffer operations for Emacs")