lilyp pushed a commit to branch emacs-team
in repository guix.
commit b8490ba4f127e9bb692cf46dd13a9e193ffb7ddf
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Mar 20 11:08:40 2025 +0100
gnu: emacs-polymode-org: Skip failing tests.
* gnu/packages/emacs-xyz.scm (emacs-polymode-org)
[arguments]{test-command}: Set it.
{phases}: Add phase 'patch-tests to skip failing tests.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c61b2a8771..301a5b93c2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23925,6 +23925,17 @@ Microsoft PowerShell files.")
(sha256
(base32 "1srnwcsn2bh8gqzxixkhffk7gbnk66kd4dgvxbnps5nxqc6v0qhc"))))
(build-system emacs-build-system)
+ (arguments
+ (list
+ #:test-command #~(list "make" "test")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'patch-tests
+ (lambda _
+ (substitute* "tests/poly-org-tests.el"
+ (("\\(ert-deftest poly-org/change-spans \\(\\)"
+ all)
+ (string-append all "(skip-unless nil)"))))))))
(propagated-inputs
(list emacs-polymode))
(properties '((upstream-name . "poly-org")))