mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-m-buffer-el: Honor the #:tests? flag.
* gnu/packages/emacs-xyz.scm (emacs-m-buffer-el)[arguments]: Adjust custom 'check phase to honor the #:tests? flag.
This commit is contained in:
parent
8e00050de0
commit
8e2eecc67b
1 changed files with 6 additions and 5 deletions
|
@ -18882,11 +18882,12 @@ mode.")
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'install 'check
|
(add-before 'install 'check
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "emacs" "--batch" "-L" "."
|
(when tests?
|
||||||
"-l" "test/m-buffer-test.el"
|
(invoke "emacs" "--batch" "-L" "."
|
||||||
"-l" "test/m-buffer-at-test.el"
|
"-l" "test/m-buffer-test.el"
|
||||||
"-f" "ert-run-tests-batch-and-exit"))))))
|
"-l" "test/m-buffer-at-test.el"
|
||||||
|
"-f" "ert-run-tests-batch-and-exit")))))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/phillord/m-buffer-el")
|
(home-page "https://github.com/phillord/m-buffer-el")
|
||||||
(synopsis "List oriented buffer operations for Emacs")
|
(synopsis "List oriented buffer operations for Emacs")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue