diff options
Diffstat (limited to 'app-emacs/biblio')
-rw-r--r-- | app-emacs/biblio/biblio-0.3.ebuild | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/app-emacs/biblio/biblio-0.3.ebuild b/app-emacs/biblio/biblio-0.3.ebuild index 4e000dad76ad..d41a6dd38d78 100644 --- a/app-emacs/biblio/biblio-0.3.ebuild +++ b/app-emacs/biblio/biblio-0.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # NOTICE: This package contains libraries: biblio-core and biblio @@ -34,11 +34,16 @@ ELISP_REMOVE="${PN}-pkg.el" DOCS=( README.md etc ) SITEFILE="50${PN}-gentoo.el" +elisp-enable-tests buttercup tests + +src_prepare() { + elisp_src_prepare + + sed -i tests/biblio-tests.el \ + -e 's|it "shows bindings|xit "shows bindings|g' || die +} + src_compile() { elisp_src_compile elisp-make-autoload-file } - -src_test() { - buttercup -L . -L tests --traceback full tests || die -} |