guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: gmnisrv: Disable tests using #:tests?.


From: guix-commits
Subject: 01/04: gnu: gmnisrv: Disable tests using #:tests?.
Date: Mon, 26 Jul 2021 17:14:41 -0400 (EDT)

arunisaac pushed a commit to branch master
in repository guix.

commit 274fcfb2516b630daba814ae247f2e3c818cea9a
Author: Sarah Morgensen <iskarian@mgsn.dev>
AuthorDate: Sun Jul 25 13:39:52 2021 -0700

    gnu: gmnisrv: Disable tests using #:tests?.
    
    gnu/packages/web.scm (gmnisrv)[arguments]<#:phases>: Undelete check
    phase, and...
    <#:tests?>: ...disable tests here instead.
    
    Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
---
 gnu/packages/web.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index f229397..0ac1311 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -7983,13 +7983,13 @@ solution for any project's interface needs:
                 (file-name (git-file-name name version))))
       (build-system gnu-build-system)
       (arguments
-       `(#:phases
+       `(#:tests? #f ; no check target
+         #:phases
          (modify-phases %standard-phases
            (add-before 'configure 'set-variables
              (lambda _
                (setenv "CC" "gcc")
-               #t))
-           (delete 'check))))
+               #t)))))
       (inputs
        `(("openssl" ,openssl)))
       (native-inputs



reply via email to

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