From d29cf19bfb16bfb4092cdd0231436e360fe2aa87 Mon Sep 17 00:00:00 2001 From: Aleksandr Vityazev Date: Fri, 17 Dec 2021 08:30:24 +0000 Subject: gnu: ableton-link: Run tests conditionally. * gnu/packages/audio.scm (ableton-link)[arguments]: Respect TESTS? option. Signed-off-by: Nicolas Goaziou --- gnu/packages/audio.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index c98490505c..05c6354e45 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -5241,11 +5241,12 @@ Rate} 3600x2250 bit/s vocoder used in various radio systems.") #:phases (modify-phases %standard-phases (replace 'check - (lambda* (#:key inputs #:allow-other-keys) - (let* ((python (search-input-file inputs "/bin/python3")) - (run-tests "../source/ci/run-tests.py")) - (invoke python run-tests "--target" "LinkCoreTest") - (invoke python run-tests "--target" "LinkDiscoveryTest")))) + (lambda* (#:key inputs tests? #:allow-other-keys) + (when tests? + (let* ((python (search-input-file inputs "/bin/python3")) + (run-tests "../source/ci/run-tests.py")) + (invoke python run-tests "--target" "LinkCoreTest") + (invoke python run-tests "--target" "LinkDiscoveryTest"))))) (add-before 'install 'patch-cmake (lambda* (#:key inputs #:allow-other-keys) (let* ((source "../source/")) -- cgit v1.2.3