lilyp pushed a commit to branch emacs-team
in repository guix.
commit a7a5864e8856b94a9e227682d5af7d6253dd5dce
Author: Liliana Marie Prikler <[email protected]>
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 8e09b4bf2a..ade47bbd59 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27168,15 +27168,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")