guix_mirror_bot pushed a commit to branch emacs-team
in repository guix.
commit 14dbb4691fd377610f1fce7d64a77a6241ecc487
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Mon Aug 31 13:42:58 2026 +0200
gnu: emacs-perspective: Skip failing test.
* gnu/packages/emacs-xyz.scm (emacs-perspective)[arguments]
<#:test-command>: Use “--eval” to pass a test selector.
---
gnu/packages/emacs-xyz.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f4c34ec89b..2bc8b4b717 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -17104,7 +17104,11 @@ for Perl programming, and a tutorial for novices to
start using Emacs.")
(arguments
`(#:test-command '("emacs" "-Q" "-batch" "-L" "."
"-l" "test/test-perspective.el"
- "-f" "ert-run-tests-batch-and-exit")))
+ "--eval"
+ ;; This test is known to fail for Emacs 31,
+ ;; see
<https://github.com/nex3/perspective-el/pull/233>.
+ "(ert-run-tests-batch-and-exit
+ '(not \"basic-persp-window-prev-buffers\"))")))
(home-page "https://github.com/nex3/perspective-el")
(synopsis "Switch between named \"perspectives\"")
(description