guix-commits
[Top][All Lists]
Advanced

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

05/07: gnu: python-h11: Respect "--without-tests".


From: guix-commits
Subject: 05/07: gnu: python-h11: Respect "--without-tests".
Date: Thu, 8 Jul 2021 15:23:14 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit c46c8531dd35db5af0e37a9230acafa9215080ef
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Thu Jul 8 17:24:22 2021 +0200

    gnu: python-h11: Respect "--without-tests".
    
    * gnu/packages/python-web.scm
      (python-h11)[arguments]<#:phases>{check}: Respect #:tests?.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/python-web.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index acabe00..d175fbb 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -908,8 +908,9 @@ for use in Python programs that implement HTTP/2.")
      `(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda _
-             (invoke "pytest" "-vv"))))))
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (invoke "pytest" "-vv")))))))
     (native-inputs
      `(("python-pytest" ,python-pytest)))
     (home-page "https://github.com/python-hyper/h11";)



reply via email to

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