diff options
author | Tobias Kortkamp <tobias.kortkamp@gmail.com> | 2022-08-26 16:37:13 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-11 16:48:12 +0200 |
commit | 0b876d0a714c14319533ae5b857fa515558f8ec0 (patch) | |
tree | d5c4fe87125d4bb69ee13ed1320883bef3d2c8c2 /gnu/packages | |
parent | 283afa44b531e9178e7476e7ab1f8f021ab0d1c9 (diff) | |
download | guix-0b876d0a714c14319533ae5b857fa515558f8ec0.tar.gz |
gnu: piper: Unbreak tests.
Make flake8 config available inside the build directory. https://github.com/libratbag/piper/pull/781 * gnu/packages/gnome.scm (piper): Unbreak tests. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index fe4a667797..47c9396781 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -12194,7 +12194,6 @@ your operating-system definition: python-pygobject)) (arguments (list #:glib-or-gtk? #t - #:tests? #f ;; The flake8 test fails trying to validate piper.in as code. #:phases #~(modify-phases %standard-phases (add-after 'unpack 'dont-update-gtk-icon-cache @@ -12211,7 +12210,11 @@ your operating-system definition: (wrap-program (string-append #$output "/bin/piper") `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH") ,pylib)) - `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))))) + `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))) + (add-before 'check 'flake8-config + (lambda _ + ;; Make sure the tests use the local flake8 config + (symlink (string-append #$source "/.flake8") ".flake8")))))) (home-page "https://github.com/libratbag/piper/") (synopsis "Configure bindings and LEDs on gaming mice") (description "Piper is a GTK+ application for configuring gaming mice with |