From 1be53ad1979a1c1da074d260adf376475250dc13 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 10 Apr 2023 16:50:15 +0300 Subject: [PATCH] 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 @@ (define-public python-lit `(#: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/")