diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-19 00:22:25 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-19 00:26:49 +0200 |
commit | ef077b83f9de49c6f162eddb6ccd61f3d78e591f (patch) | |
tree | e7ca44fb5513889249457dc72bc58d638de19df9 | |
parent | 282de197e85c2fc5606ad485b5d3b4070429860c (diff) |
gnu: emacs-all-the-icons: Honour #:tests?
* gnu/packages/emacs-xyz.scm (emacs-all-the-icons)[#:phases]<check>: Honour
tests.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9c23c69f79..30f924a3fb 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27793,10 +27793,12 @@ files are easily readable and they work nicely with version control systems.") (install-file "octicons.ttf" fonts) (install-file "weathericons.ttf" fonts))))) (replace 'check - (lambda* (#:key outputs #:allow-other-keys) - (apply invoke "ert-runner" "-l" - (append (find-files "data" "\\.el") - '("all-the-icons-faces.el")))))))) + (lambda* (#:key tests? outputs #:allow-other-keys) + (if tests? + (apply invoke "ert-runner" "-l" + (append (find-files "data" "\\.el") + '("all-the-icons-faces.el"))) + (format #t "test suite not run~%"))))))) (native-inputs (list emacs-f emacs-ert-runner)) (propagated-inputs |