me
/
guix
Archived
1
0
Fork 0

gnu: ruby-cucumber-html-formatter: Honor #:tests? argument.

* gnu/packages/ruby.scm (ruby-cucumber-html-formatter)
[arguments]: Honor #:tests? in check phase override.
master
Maxim Cournoyer 2023-03-14 17:00:22 -04:00
parent 2ccb9e002d
commit 1cb558d981
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 2 deletions

View File

@ -8220,8 +8220,9 @@ system-specific @code{Meta} messages for Cucumber Ruby.")
(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")