guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: emacs: Fix ert-runner by adding 'reporters' subdirectory.


From: Arun Isaac
Subject: 02/02: gnu: emacs: Fix ert-runner by adding 'reporters' subdirectory.
Date: Thu, 8 Jun 2017 10:28:46 -0400 (EDT)

arunisaac pushed a commit to branch master
in repository guix.

commit 45f523d9f018c262900e94b0f70f17b05118941c
Author: Maxim Cournoyer <address@hidden>
Date:   Sun Jun 4 20:57:03 2017 -0700

    gnu: emacs: Fix ert-runner by adding 'reporters' subdirectory.
    
    Previous this change, ert-runner would fail with error:
    "Invalid reporter: dot".
    
    * gnu/packages/emacs.scm (ert-runner)[include]: Add regexp to match elisp
    files under the 'reporters' subdirectory.
    
    Signed-off-by: Arun Isaac <address@hidden>
---
 gnu/packages/emacs.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 987aaf4..a4cb4a0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4814,7 +4814,8 @@ Emacs.")
                           ;; determined by emacs' standard initialization
                           ;; procedure
                           (list ""))))
-                 #t))))))
+                 #t))))
+         #:include (cons* "^reporters/.*\\.el$" %default-include)))
       (home-page "https://github.com/rejeep/ert-runner.el";)
       (synopsis "Opinionated Ert testing workflow")
       (description "@code{ert-runner} is a tool for Emacs projects tested



reply via email to

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