guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: emacs-elpy: Disable two tests that fail when building with E


From: guix-commits
Subject: 02/03: gnu: emacs-elpy: Disable two tests that fail when building with Emacs 27.
Date: Wed, 17 Jun 2020 09:51:00 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit cb4b60bceea1110f357af8e1f20cd32629774c84
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Jun 16 23:32:36 2020 -0400

    gnu: emacs-elpy: Disable two tests that fail when building with Emacs 27.
    
    * gnu/packages/emacs-xyz.scm 
(emacs-elpy)[phases]{disable-problematic-tests}:
    New phase.
---
 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 0cf7697..c92b572 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7399,6 +7399,17 @@ indentation guides in Emacs:
      `(#:include (cons* "^elpy/[^/]+\\.py$" "^snippets\\/" %default-include)
        #:phases
        (modify-phases %standard-phases
+         ;; The following tests fail when building with Emacs 27 (see:
+         ;; https://github.com/jorgenschaefer/elpy/issues/1812).
+         (add-after 'unpack 'disable-problematic-tests
+           (lambda _
+             (substitute* "test/elpy-company-backend-test.el"
+               (("elpy-company-backend-should-add-shell-candidates.*" all)
+                (string-append all "  (skip-unless nil)\n")))
+             (substitute* "test/elpy-folding-fold-comments-test.el"
+               (("elpy-fold-at-point-should-fold-and-unfold-comments.*" all)
+                (string-append all "  (skip-unless nil)\n")))
+             #t))
          ;; The default environment of the RPC uses Virtualenv to install
          ;; Python dependencies from PyPI.  We don't want/need this in Guix.
          (add-before 'check 'do-not-use-virtualenv



reply via email to

[Prev in Thread] Current Thread [Next in Thread]