mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
caa5c41b68
commit
6b92421db8
1 changed files with 3 additions and 2 deletions
|
@ -12326,8 +12326,9 @@ single pass.")
|
|||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "ruby" "-Ilib" "-r" "brass"))))))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "ruby" "-Ilib" "-r" "brass")))))))
|
||||
(synopsis "Basic foundational assertions framework")
|
||||
(description
|
||||
"BRASS (Bare-Metal Ruby Assertion System Standard) is a basic
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue