mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-evil-goggles: Fix tests.
* gnu/packages/emacs-xyz.scm (emacs-evil-goggles)[arguments]: Add #:test-command. <#:phases>: Add ‘skip-failing-tests’. [native-inputs]: Add emacs-ert-runner.
This commit is contained in:
parent
d1c5240ea4
commit
82380f3ada
1 changed files with 10 additions and 0 deletions
|
@ -18753,8 +18753,18 @@ Emacs that Evil does not cover properly by default, such as @code{help-mode},
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1p3vjrij63v9nrcyj3b5jsqzv9y7dgv9i1inx1q7x3s90vndavac"))))
|
(base32 "1p3vjrij63v9nrcyj3b5jsqzv9y7dgv9i1inx1q7x3s90vndavac"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:test-command #~(list "ert-runner" "test")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'skip-failing-test
|
||||||
|
(lambda _
|
||||||
|
(substitute* "test/evil-goggles-test.el"
|
||||||
|
(("\\(ert-deftest evil-test-last-insert-register.*" all)
|
||||||
|
(string-append all " (skip-unless nil)"))))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-evil))
|
(list emacs-evil))
|
||||||
|
(native-inputs (list emacs-ert-runner))
|
||||||
(home-page "https://github.com/edkolev/evil-goggles")
|
(home-page "https://github.com/edkolev/evil-goggles")
|
||||||
(synopsis "Displays visual hints when editing with evil")
|
(synopsis "Displays visual hints when editing with evil")
|
||||||
(description "Creates a visual pulse to indicate the region that is
|
(description "Creates a visual pulse to indicate the region that is
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue