1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 19:40:46 +02:00

gnu: emacs-daemons: Fix tests.

* gnu/packages/emacs-xyz.scm (emacs-daemons)[arguments]: Add #:test-command
and ‘skip-failing-tests’ phase.
[native-inputs]: Add emacs-ert-runner.
This commit is contained in:
Liliana Marie Prikler 2025-03-13 20:43:00 +01:00
parent 283f7b133b
commit 9d19a2c177
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -29987,7 +29987,19 @@ can be configured to perform other key sequence translations.")
(base32
"1p5f2lf6jlsvyh6zhd6drc2njadlkn73djrykridsphzh92q88k0"))))
(build-system emacs-build-system)
(arguments
(list
#:test-command #~(list "ert-runner" "daemons-test.el")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'skip-failing-tests
(lambda _
(substitute* "daemons-test.el"
(("\\(ert-deftest daemons-(-command|define-submodule)-test .*"
all)
(string-append all " (skip-unless nil)"))))))))
(propagated-inputs (list emacs-s))
(native-inputs (list emacs-ert-runner))
(home-page "https://github.com/cbowdon/daemons.el")
(synopsis "Emacs UI for managing init system services")
(description