summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-17 10:58:10 +0000
committerAndreas Enge <andreas@enge.fr>2025-06-20 20:40:02 +0200
commit6b92421db8504e77f3f65215f1d39e250cd92bf1 (patch)
tree784f1fe413b31f1b208f4e6aedfa448acf091c35 /gnu
parentcaa5c41b682e0f6324fd307ca1c48b1aa6d74da7 (diff)
gnu: ruby-brass: Respect #:tests? argument.
* gnu/packages/ruby.scm (ruby-brass): [phases] {check}: Skip the 'check phase when #:tests? is false. Change-Id: I8f1a600a003c1834fe36ae06f09b24cc216d4833
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/ruby.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index de841e26eb9..3883e3e4417 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12326,8 +12326,9 @@ single pass.")
12326 `(#:phases 12326 `(#:phases
12327 (modify-phases %standard-phases 12327 (modify-phases %standard-phases
12328 (replace 'check 12328 (replace 'check
12329 (lambda _ 12329 (lambda* (#:key tests? #:allow-other-keys)
12330 (invoke "ruby" "-Ilib" "-r" "brass")))))) 12330 (when tests?
12331 (invoke "ruby" "-Ilib" "-r" "brass")))))))
12331 (synopsis "Basic foundational assertions framework") 12332 (synopsis "Basic foundational assertions framework")
12332 (description 12333 (description
12333 "BRASS (Bare-Metal Ruby Assertion System Standard) is a basic 12334 "BRASS (Bare-Metal Ruby Assertion System Standard) is a basic