From ef06671d8f8bfc1f0570e5cb067cc3851d064331 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 16 Mar 2023 21:51:44 +0200 Subject: gnu: ruby-minitest-pretty-diff: Honor the #:tests? flag. * gnu/packages/ruby.scm (ruby-minitest-pretty-diff)[arguments]: Adjust custom 'check phase to honor the #:tests? flag. --- gnu/packages/ruby.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 7459222dc9..d61d67a7f7 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4490,8 +4490,9 @@ is to be run.") `(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ - (invoke "sh" "script/test")))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "sh" "script/test"))))))) (native-inputs (list bundler ruby-turn)) (synopsis "Pretty-print hashes and arrays in MiniTest") -- cgit 1.4.1