lilyp pushed a commit to branch emacs-team
in repository guix.
commit de114f0c328732b91e936d8e4f8778c3f3b086e2
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Mar 20 11:08:43 2025 +0100
gnu: emacs-poly-noweb: Disable tests.
* gnu/packages/emacs-xyz.scm (emacs-poly-noweb)
[arguments]{tests?}: Disable them.
{test-command}: Set it.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 761add8952..d9fb9a7f02 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23884,6 +23884,9 @@ files using the major mode corresponding to each
block.")
(sha256
(base32 "1jl5h4nf10xd2gdlsxi6h2n3z5zh26ffcixn68xfp5q4zl34zk8p"))))
(build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f ; XXX: FIXME Multiple failing tests.
+ #:test-command #~(list "make" "test")))
(propagated-inputs
(list emacs-polymode))
(home-page "https://github.com/polymode/poly-noweb")