diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-20 11:08:11 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-06-15 16:57:09 +0200 |
commit | e9a8f93e41b4bf62c9f7b5e0e4bcb006c1fc1c45 (patch) | |
tree | ee674bc1451f8d9bcc3b337220aa0ab962e0d046 | |
parent | a4ac98d5fde76bb3c9752acf432ae1fe5d2ae2c9 (diff) |
gnu: emacs-magit-todos: Disable absent tests.
* gnu/packages/emacs-xyz.scm (emacs-magit-todos)[source]: Delete
Makefile and makem.sh to disable tests search, there are none.
[arguments]{tests?}: Disable tests.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9688b7aaa3..43adeed69c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -31675,8 +31675,16 @@ buffers – other modes on the TODO list). (file-name (git-file-name name version)) (sha256 (base32 - "0rjr5q73609bs8gx2h5lp7c7bk5nkplfqfd56ifwdrdzdfzn5khy")))) + "0rjr5q73609bs8gx2h5lp7c7bk5nkplfqfd56ifwdrdzdfzn5khy")) + (modules '((guix build utils))) + (snippet #~(begin + (delete-file-recursively "screenshots") + ;; Contents of makem package, but no tests. + (for-each delete-file + '("makem.sh" "Makefile")))))) (build-system emacs-build-system) + (arguments + (list #:tests? #f)) ; No tests in source. (propagated-inputs (list emacs-async emacs-dash |