guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 79518c4d2e764e118e88308fc92a69f5153e5efd
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Apr 27 16:52:48 2025 +0200
gnu: emacs-ob-async: Skip tests.
* gnu/packages/emacs-xyz.scm (emacs-ob-async): Skip tests.
[arguments]<test-commands>: Set it.
[native-inputs]: Add emacs-ert-runner.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 34fe0c0a43..d81e3d694f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10728,6 +10728,12 @@ command for interactive viewing.
(sha256
(base32 "10x4hxrjm4pr6vg42a961h9ilqzyd0l0fv7fsbq9clxi439f1nd6"))))
(build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f ; ~1/2 tests fail.
+ #:test-command
+ #~(list "ert-runner" "--verbose" "--debug" "-l" "ob-async.el")))
+ (native-inputs
+ (list emacs-ert-runner))
(propagated-inputs
(list emacs-async emacs-dash))
(home-page "https://github.com/astahlman/ob-async")