me
/
guix
Archived
1
0
Fork 0

gnu: ruby-shoulda: Honor #:tests?.

* gnu/packages/ruby.scm (ruby-shoulda)
[arguments]: Honor #:tests? in check phase.
master
Maxim Cournoyer 2023-03-17 22:07:34 -04:00
parent 208cf6916e
commit 2a34881356
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 5 additions and 3 deletions

View File

@ -10152,9 +10152,11 @@ more complex, and error-prone.")
`(#:phases
(modify-phases %standard-phases
(replace 'check
;; Don't run tests to avoid circular dependence with rails. Instead
;; just import the library to test.
(lambda _ (invoke "ruby" "-Ilib" "-r" "shoulda")))
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
;; Don't run tests to avoid circular dependence with rails.
;; Instead just import the library to test.
(invoke "ruby" "-Ilib" "-r" "shoulda"))))
(add-after 'extract-gemspec 'relax-requirements
(lambda _
(substitute* "shoulda.gemspec"