guix_mirror_bot pushed a commit to branch emacs-team
in repository guix.
commit a3539337f08cd530760246183fedb309b7c66705
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Mon Aug 31 13:35:19 2026 +0200
gnu: emacs-treemacs: Skip failing tests.
* gnu/packages/emacs-xyz.scm (emacs-treemacs)[arguments]
<#:phases>: Add ‘skip-failing-tests’.
---
gnu/packages/emacs-xyz.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0a6f0ed5e3..f4c34ec89b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -39470,6 +39470,13 @@ processes for Emacs.")
;; Elisp directory is not in root of the source.
(lambda _
(chdir "src/elisp")))
+ (add-after 'unpack 'skip-failing-tests
+ (lambda _
+ (substitute* "test/treemacs-test.el"
+ (("it \"Correctly transforms an org-mode index\"" all)
+ (string-append
+ all
+ "(assume (version< emacs-version \"31.0\"))")))))
(add-before 'install 'patch-paths
(lambda* (#:key inputs #:allow-other-keys)
(make-file-writable "treemacs-core-utils.el")