From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34111) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cul4f-0005JO-KK for guix-patches@gnu.org; Sun, 02 Apr 2017 15:22:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cul4c-0002Rr-HO for guix-patches@gnu.org; Sun, 02 Apr 2017 15:22:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59561) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cul4c-0002Rb-Am for guix-patches@gnu.org; Sun, 02 Apr 2017 15:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cul4c-0003vR-3G for guix-patches@gnu.org; Sun, 02 Apr 2017 15:22:02 -0400 Subject: bug#26342: [PATCH] gnu: emacs-elfeed: Enable tests. References: In-Reply-To: Resent-Message-ID: Message-Id: <801f65e4.AEAAIka4wHgAAAAAAAAAAAOx2yMAAAACwQwAAAAAAAW9WABY4U8p@mailjet.com> From: Arun Isaac Date: Mon, 3 Apr 2017 00:50:57 +0530 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26342@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-elfeed)[arguments]: Add a 'check' phase. --- gnu/packages/emacs.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index cb2792f63..83c76113f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3100,6 +3100,12 @@ If you want to mark a folder manually as a project j= ust create an empty (base32 "145glas04zd0s2rmnif46vhyijs4z03v871gfp1dcrwxvvvns8ap")))) (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'check + (lambda _ + (zero? (system* "make" "test"))))))) (home-page "https://github.com/skeeto/elfeed") (synopsis "Atom/RSS feed reader for Emacs") (description --=20 2.11.0 =