lilyp pushed a commit to branch emacs-team
in repository guix.
commit 52d463f5b7f6a5ce5e9cc807b470dafb8ad2baf1
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sun Mar 2 14:54:25 2025 +0100
gnu: emacs-elpy: Record failing tests for Emacs 30.
* gnu/packages/emacs-xyz.scm (emacs-elpy)[disable-broken-tests]: Update.
---
gnu/packages/emacs-xyz.scm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bfcbb56577..69d02eda0b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16977,6 +16977,18 @@ indentation guides in Emacs:
(substitute* "elpy-folding-fold-blocks-test.el"
(("elpy-fold-at-point-should-NOT-fold-and-unfold-functions\
-from-after.*" all)
+ (string-append all " :expected-result :failed\n")))
+ ;; These tests started failing with Emacs 30.
+ ;; (TODO: report upstream)
+ (substitute* "elpy-company-backend-test.el"
+ (("elpy-company-backend-should-find-.*-prefix-string.*" all)
+ (string-append all " :expected-result :failed\n")))
+ (substitute* "elpy-shell-get-or-create-process-test.el"
+ (("elpy-shell-get-or-create-process-should-add-project-root\
+-to-path.*" all)
+ (string-append all " :expected-result :failed\n")))
+ (substitute* "elpy-format-code-test.el"
+ (("elpy-should-format-code-with-default-formatter.*" all)
(string-append all " :expected-result :failed\n"))))))
;; The default environment of the RPC uses Virtualenv to install
;; Python dependencies from PyPI. We don't want/need this in Guix.