gnu: emacs-org-generate: Disable tests to let the package build.

* gnu/packages/emacs-xyz.scm (emacs-org-generate)[propagated-inputs]: Add
with-simulated-inputs for tests...
[arguments]<#:tests?>: ... yet disable them for now as there seems to be an
issue with Cort library.
This commit is contained in:
Nicolas Goaziou 2021-05-29 22:56:09 +02:00
parent 570b4c8135
commit 18562b7708
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D

View File

@ -27196,11 +27196,14 @@ opening Org Ref's @code{cite:} links.")
(base32
"0z2frp5mn3lp2xskwanw2rncrwa50x3aphy87vfxmhx4fqlqrzy8"))))
(inputs
`(("emacs-cort" ,emacs-cort))) ;tests suite
`(("emacs-cort" ,emacs-cort)
("emacs-with-simulated-input" ,emacs-with-simulated-input)))
(propagated-inputs
`(("emacs-mustache" ,emacs-mustache)))
(arguments
`(#:tests? #t
;; FIXME: Tests fail with "Wrong type argument: sequencep, :equal". It
;; seems to be an issue with Cort library.
`(#:tests? #f
#:test-command '("emacs" "--batch" "--quick"
"--directory=." "--load=org-generate-tests.el"
"--funcall=cort-test-run")))