gnu: emacs-d-mode: Handle tests.

* gnu/packages/emacs-xyz.scm (emacs-d-mode)[arguments]: Add #:test-command.
Disable using #:tests? #f.
This commit is contained in:
Liliana Marie Prikler 2025-03-13 20:42:56 +01:00
parent 9cf34887d6
commit 0fd615c88e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -7123,6 +7123,11 @@ evaluations. The entry point is @code{M-x build-farm} command.")
(sha256
(base32 "0mwd412d2kha8avkyhvvkh8r7an859xk18f7phgx7kj989pr3xkr"))))
(build-system emacs-build-system)
(arguments (list #:tests? #f ; XXX: too many failures
#:test-command
#~(list "emacs" "-Q" "-batch" "-l" "d-mode-test.el"
"-l" "d-mode.el"
"-f" "ert-run-tests-batch-and-exit")))
(propagated-inputs
(list emacs-undercover))
(home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")