1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: emacs-dired-du: Fix tests.

* gnu/packages/emacs-xyz.scm (emacs-dired-du)[arguments]: Add #:test-command
and ‘skip-failing-tests’ phase.
This commit is contained in:
Liliana Marie Prikler 2025-03-09 15:19:41 +01:00
parent af5da4e270
commit 3ee4d9938e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -31614,6 +31614,14 @@ was called.")
(sha256
(base32 "0vhph7vcicsiq28b10h3b4dvnhckcy4gccpdgsad5j7pwa5k26m1"))))
(build-system emacs-build-system)
(arguments (list #:test-command #~(list "make" "test")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'skip-failing-tests
(lambda _
(substitute* "dired-du-tests.el"
(("\\(ert-deftest dired-du-sort-by-size .*" all)
(string-append all " (skip-unless nil)"))))))))
(home-page "https://elpa.gnu.org/packages/dired-du.html")
(synopsis "Dired with recursive directory sizes")
(description