From 384b98028cb4be0e321320f10a1f3893e66598e0 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 3 Oct 2022 09:49:27 -0400 Subject: gnu: gappa: Honor TESTS?. * gnu/packages/algebra.scm (gappa) [phases] {check}: Honor TESTS?. --- gnu/packages/algebra.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 71a4b3dc9b..f94aba1ebf 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -1427,7 +1427,9 @@ objects.") (replace 'install (lambda _ (invoke "./remake" "-s" "-d" "install"))) (replace 'check - (lambda _ (invoke "./remake" "check")))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "./remake" "check"))))))) (native-inputs (list autoconf automake bison flex libtool)) (inputs (list boost gmp mpfr)) (home-page "https://gitlab.inria.fr/gappa/gappa") -- cgit v1.2.3