gnu: emacs-m-buffer-el: Fix tests.

* gnu/packages/emacs-xyz.scm (emacs-m-buffer-el)[arguments]: Add #:test-command.
Remove unnecessary check phase.
This commit is contained in:
Liliana Marie Prikler 2025-03-13 20:42:59 +01:00
parent d0c46fc4f5
commit cd15bc04db
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -27656,15 +27656,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")