diff options
author | Zzull <bstrazzull@hotmail.fr> | 2023-03-29 02:02:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-03-30 12:19:49 +0200 |
commit | 9a180b905ee5cb7f2c09ecaf33065763dd254b27 (patch) | |
tree | fb13ae5c7f6da10bf1b6ea8a97a4ee17568e8a9b | |
parent | 249781e93c3b5fb681747ace8dceef042fc10f5d (diff) | |
download | guix-9a180b905ee5cb7f2c09ecaf33065763dd254b27.tar.gz |
gnu: emacs-lemon: Add tests
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c857133297..7139be5a1e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5376,6 +5376,17 @@ environments.") (sha256 (base32 "18yclk2zzqcahzhz2kq8g9gy1xnnxiy6rxs2lwhskj475kvwy2f9")))) (build-system emacs-build-system) + (arguments + (list + #:tests? #true + + ;; Only one test out of the four passes + #:test-command #~(list "emacs" "-Q" "--batch" "-L" "." + ;; "-l" "lemon--test.el" + ;; "-l" "lemon-monitor--test.el" + ;; "-l" "lemon-sparkline--test.el" + "-l" "lemon-time--test.el" + "-f" "ert-run-tests-batch-and-exit"))) (native-inputs (list emacs-blight emacs-emms)) (propagated-inputs |