mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: ruby-cucumber-html-formatter: Honor #:tests? argument.
* gnu/packages/ruby.scm (ruby-cucumber-html-formatter) [arguments]: Honor #:tests? in check phase override.
This commit is contained in:
parent
2ccb9e002d
commit
1cb558d981
1 changed files with 3 additions and 2 deletions
|
@ -8220,8 +8220,9 @@ (define-public ruby-cucumber-html-formatter
|
|||
(substitute* ".gemspec"
|
||||
(("~> 18.0") "~> 21.0")))) ;cucumber-messages
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "rspec"))))))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "rspec")))))))
|
||||
(native-inputs (list ruby-cucumber-compatibility-kit ruby-rspec))
|
||||
(propagated-inputs (list ruby-cucumber-messages))
|
||||
(synopsis "HTML formatter for Cucumber")
|
||||
|
|
Loading…
Reference in a new issue