3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: ruby-yard: Disable tests.

YARD is a common dependency in the Ruby world; having it carry extra test
dependencies is prone to cause dependency cycles.  For example, YARD depends
on Asciidoctor, but the latest Asciidoctor requires ruby-cucumber for its test
suite, which pulls YARD through many of its dependencies.

* gnu/packages/ruby.scm (ruby-yard)[arguments]: Disable tests.
[native-inputs]: Remove.
This commit is contained in:
Maxim Cournoyer 2020-07-09 11:49:49 -04:00
parent b17a48d035
commit 65a6123951
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -6994,35 +6994,23 @@ A modified copy of yajl is used, and included in the package.")
(method git-fetch)
;; Tests do not pass if we build from the distributed gem.
(uri (git-reference
(url "https://github.com/lsegal/yard")
(commit (string-append "v" version))))
(url "https://github.com/lsegal/yard")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1v48zz8hzazrg79jksj9siys21d2axvzijvkxw2j42zh86syi1wi"))))
(build-system ruby-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
;; Delete the Gemfile to avoid errors relating to it
(delete-file "Gemfile")
;; $HOME needs to be set to somewhere writeable for tests to run
(setenv "HOME" "/tmp")
;; Run tests without using 'rake' to avoid dependencies.
(invoke "rspec"))))))
(native-inputs
`(("ruby-rspec" ,ruby-rspec)
("ruby-rack" ,ruby-rack)
("ruby-redcloth" ,ruby-redcloth)
("ruby-asciidoc" ,ruby-asciidoctor)))
;; Note: Tests are willfully disabled to alleviate dependency cycle
;; problems.
`(#:tests? #f))
(synopsis "Documentation generation tool for Ruby")
(description
"YARD is a documentation generation tool for the Ruby programming
language. It enables the user to generate consistent, usable documentation
that can be exported to a number of formats very easily, and also supports
extending for custom Ruby constructs such as custom class level definitions.")
(description "YARD is a documentation generation tool for the Ruby
programming language. It enables the user to generate consistent, usable
documentation that can be exported to a number of formats very easily, and
also supports extending for custom Ruby constructs such as custom class level
definitions.")
(home-page "https://yardoc.org")
(license license:expat)))