gnu: emacs-docker: Disable tests in a correct way

* gnu/packages/emacs-xyz.scm (emacs-docker)[arguments]: Uses #tests? instead
of deleting the `check' phase.
This commit is contained in:
Nicolas Goaziou 2021-09-23 09:29:00 +02:00
parent dd066cddd6
commit df3b064607
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -23559,10 +23559,7 @@ (define-public emacs-docker
("emacs-s" ,emacs-s)
("emacs-tablist" ,emacs-tablist)
("emacs-transient" ,emacs-transient)))
(arguments
`(#:phases
(modify-phases %standard-phases
(delete 'check)))) ;no tests
(arguments `(#:tests? #false)) ;no tests
(build-system emacs-build-system)
(home-page "https://github.com/Silex/docker.el")
(synopsis "Manage docker from Emacs")