guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: python-lit: Honor the #:tests? flag.


From: guix-commits
Subject: 02/06: gnu: python-lit: Honor the #:tests? flag.
Date: Mon, 10 Apr 2023 10:02:30 -0400 (EDT)

efraim pushed a commit to branch core-updates
in repository guix.

commit 1be53ad1979a1c1da074d260adf376475250dc13
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Apr 10 16:50:15 2023 +0300

    gnu: python-lit: Honor the #:tests? flag.
    
    * gnu/packages/check.scm (python-lit)[arguments]: Honor the #:tests?
    flag in the custom 'check phase.
---
 gnu/packages/check.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 550dc44d2d..0ffd25e898 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2360,8 +2360,9 @@ programs, something like CSmith, a random generator of C 
programs.")
      `(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda _
-             (invoke "python" "lit.py" "tests"))))))
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (invoke "python" "lit.py" "tests")))))))
     (native-inputs
      (list llvm-14))
     (home-page "https://llvm.org/";)



reply via email to

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