[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: emacs-systemd-mode: Run tests.
From: |
guix-commits |
Subject: |
01/03: gnu: emacs-systemd-mode: Run tests. |
Date: |
Tue, 20 Aug 2024 07:06:57 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit b71b6c3a6defecde6154ac52abdaa392c40e160a
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Aug 20 12:58:50 2024 +0200
gnu: emacs-systemd-mode: Run tests.
* gnu/packages/emacs-xyz.scm (emacs-systemd-mode)[arguments]: Fix included
files list. Run tests.
Change-Id: Ice6f52b93ca76640ab97cda84e7d67fa9ce01023
---
gnu/packages/emacs-xyz.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 76882bfc80..398ae7cc7e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35123,7 +35123,13 @@ count matches, etc.")
(base32
"0ylgnvpfindg4cxccbqy02ic7p0i9rygf1w16dm1filwhbqvjplq"))))
(build-system emacs-build-system)
- (arguments '(#:include '("\\.el$" "\\.txt$")))
+ (arguments
+ (list #:include #~(cons* "\\.txt$" %default-include)
+ #:tests? #true
+ #:test-command #~(list "emacs" "-Q" "--batch"
+ "-L" "."
+ "-l" "test/systemd-tests.el"
+ "-f" "ert-run-tests-batch-and-exit")))
(home-page "https://github.com/holomorph/systemd-mode";)
(synopsis
"Major mode for editing systemd units")