gnu: emacs-islisp-mode: Run tests.

* gnu/packages/emacs-xyz.scm (emacs-islisp-mode)[arguments]: Run tests.
[native-inputs]: Add EMACS-ERT-RUNNER.
This commit is contained in:
Nicolas Goaziou 2022-12-16 18:24:52 +01:00
parent b770ecb57e
commit 6887a64593
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -13272,6 +13272,8 @@ (define-public emacs-islisp-mode
(arguments (arguments
(list (list
#:include #~(cons "\\.lsp$" %default-include) #:include #~(cons "\\.lsp$" %default-include)
#:tests? #true
#:test-command #~(list "ert-runner")
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
;; Move the extensions source files to the top level, which is ;; Move the extensions source files to the top level, which is
@ -13292,6 +13294,7 @@ (define-public emacs-islisp-mode
("easy-islisp-library-directory" ("easy-islisp-library-directory"
`(or (getenv "EASY_ISLISP") `(or (getenv "EASY_ISLISP")
,(search-input-directory inputs "share/eisl/library"))))))))) ,(search-input-directory inputs "share/eisl/library")))))))))
(native-inputs (list emacs-ert-runner))
(inputs (list eisl)) (inputs (list eisl))
(home-page "https://gitlab.com/sasanidas/islisp-mode") (home-page "https://gitlab.com/sasanidas/islisp-mode")
(synopsis "ISLisp support for Emacs") (synopsis "ISLisp support for Emacs")