me
/
guix
Archived
1
0
Fork 0

gnu: ruby-minitest-hooks: Skip tests.

* gnu/packages/ruby.scm (ruby-minitest-hooks)[arguments]: Skip test
suite.
Efraim Flashner 2021-08-09 14:33:16 +03:00
parent c53c083b0c
commit 110f6b78e9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 1 deletions

View File

@ -4756,7 +4756,10 @@ minitest 5.12, and is planned to be removed from minitest 6.")
"05z8r6sw3fz4s44fs1150ndlcmcy82vlxmhps5nncg8vk59k3gmf"))))
(build-system ruby-build-system)
(arguments
'(#:test-target "spec"))
'(#:test-target "spec"
;; Test suite is incompatible with ruby-2.7.
;; https://github.com/jeremyevans/minitest-hooks/issues/19
#:tests? #f))
(native-inputs
`(("ruby-sequel" ,ruby-sequel)
("ruby-sqlite3" ,ruby-sqlite3)))