gnu: emacs-evil-traces: Enable tests.
* gnu/packages/emacs-xyz.scm (emacs-evil-traces): Enable tests. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
parent
4278537e85
commit
a9ca0325b5
1 changed files with 11 additions and 0 deletions
|
@ -17597,6 +17597,17 @@ corresponding Evil keys.")
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-evil" ,emacs-evil)))
|
`(("emacs-evil" ,emacs-evil)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'set-shell
|
||||||
|
;; Setting the SHELL environment variable is required for the tests
|
||||||
|
;; to find sh.
|
||||||
|
(lambda _
|
||||||
|
(setenv "SHELL" (which "sh"))
|
||||||
|
#t)))
|
||||||
|
#:tests? #t
|
||||||
|
#:test-command '("make" "test")))
|
||||||
(home-page "https://github.com/mamapanda/evil-traces")
|
(home-page "https://github.com/mamapanda/evil-traces")
|
||||||
(synopsis "Visual hints for @code{evil-ex}")
|
(synopsis "Visual hints for @code{evil-ex}")
|
||||||
(description "This package adds visual hints to certain @code{ex}
|
(description "This package adds visual hints to certain @code{ex}
|
||||||
|
|
Reference in a new issue