[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: emacs-lispy: Enable tests.
From: |
guix-commits |
Subject: |
01/02: gnu: emacs-lispy: Enable tests. |
Date: |
Sat, 21 Sep 2019 00:40:00 -0400 (EDT) |
leungbk pushed a commit to branch master
in repository guix.
commit 38f549f28d73098dc31b879ff3dd73ecb5ab043f
Author: Brian Leung <address@hidden>
Date: Sat Sep 21 05:57:19 2019 +0200
gnu: emacs-lispy: Enable tests.
* gnu/packages/emacs-xyz.scm (emacs-lispy): Enable tests.
---
gnu/packages/emacs-xyz.scm | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7f0adae..ad53eba 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5293,8 +5293,32 @@ navigate code in a tree-like fashion.")
("emacs-ivy" ,emacs-ivy)
("emacs-hydra" ,emacs-hydra)
("emacs-zoutline" ,emacs-zoutline)))
+ (native-inputs
+ `(("emacs-clojure-mode" ,emacs-clojure-mode)
+ ("emacs-undercover" ,emacs-undercover)))
(arguments
- `(#:include (cons* "\\.clj$" "\\.edn$" "\\.py$" %default-include)))
+ `(#:include (cons* "\\.clj$" "\\.edn$" "\\.py$" %default-include)
+ #:phases
+ ;; XXX: one failing test involving python evaluation
+ (modify-phases %standard-phases
+ (add-before 'check 'make-test-writable
+ (lambda _
+ (make-file-writable "lispy-test.el")
+ #t))
+ (add-before 'check 'remove-python-eval-test
+ (lambda _
+ (emacs-batch-edit-file "lispy-test.el"
+ `(progn
+ (progn
+ (goto-char (point-min))
+ (re-search-forward
+ "ert-deftest lispy-eval-python-str")
+ (beginning-of-line)
+ (kill-sexp))
+ (basic-save-buffer)))
+ #t)))
+ #:tests? #t
+ #:test-command '("make" "test")))
(synopsis "Modal S-expression editing")
(description
"Due to the structure of Lisp syntax it's very rare for the programmer