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

gnu: emacs-graphql: Run tests.

* gnu/packages/emacs-xyz.scm (emacs-graphql)[arguments]: Run tests.
[native-inputs]: Add EMACS-ERT-RUNNER.
This commit is contained in:
Nicolas Goaziou 2022-12-21 10:53:41 +01:00
parent 6ad3b70297
commit 09b96f763d
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1591,6 +1591,18 @@ you will die. The game builds the list of words from the active buffer.")
(base32
"18k2c2b7y5qgc7qpkqjmz1nv61w470ja3vwprmy5dlkzficzqsvf"))))
(build-system emacs-build-system)
(arguments
(list
#:tests? #true
#:test-command #~(list "ert-runner")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'skip-failing-test
(lambda _
(substitute* "test/graphql-test.el"
(("\\(ert-deftest correct-tag .*" all)
(string-append all " (skip-unless nil)"))))))))
(native-inputs (list emacs-ert-runner))
(propagated-inputs (list emacs-ghub))
(home-page "https://github.com/vermiculus/graphql.el")
(synopsis "GraphQL utilities")