diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-10 16:50:15 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-04-10 16:50:15 +0300 |
commit | 1be53ad1979a1c1da074d260adf376475250dc13 (patch) | |
tree | 1a7551f716a2861d44f5929f52cc7d93095a864f | |
parent | 970247e9f513d08ea0ceef6acef927345aa13a58 (diff) | |
download | guix-1be53ad1979a1c1da074d260adf376475250dc13.tar.gz guix-1be53ad1979a1c1da074d260adf376475250dc13.zip |
gnu: python-lit: Honor the #:tests? flag.
* gnu/packages/check.scm (python-lit)[arguments]: Honor the #:tests?
flag in the custom 'check phase.
-rw-r--r-- | gnu/packages/check.scm | 5 |
1 files 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/") |