guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b888e88dcaad36a0a3258134eba2fa94f259dd0b
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Jun 24 16:15:00 2026 +0200

    gnu: emacs-shell-command+: Fix build.
    
    * gnu/packages/emacs-xyz.scm (emacs-shell-command+)[arguments]: Add
    ’skip-failing-tests #:phase.
---
 gnu/packages/emacs-xyz.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 49260cf8c9..ec165b76f9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -46264,7 +46264,14 @@ rather excellent completion provided by both Bash and 
Zsh.")
                   "022i7ydwckxqk16s4a83mrdr0c4rmap906qypdkjfh1rjw75qwm5"))))
       (build-system emacs-build-system)
       (arguments
-       (list #:test-command #~(list "make" "test")))
+       (list #:test-command #~(list "make" "test")
+             #:phases
+             #~(modify-phases %standard-phases
+                 (add-before 'check 'skip-failing-tests
+                   (lambda _
+                     (substitute* "shell-command+-tests.el"
+                       (("\\(ert-deftest sc\\+\\-tokenize .*" all)
+                        (string-append all " (skip-unless nil)"))))))))
       (home-page "https://elpa.gnu.org/packages/shell-command+.html";)
       (synopsis "Extended Emacs @code{shell-command}")
       (description

Reply via email to