dannym pushed a commit to branch wip-desktop in repository guix. commit edcab4b7ad14ca7ba025d970e51f824cfee8774d Author: Raghav Gururajan <raghavgurura...@disroot.org> AuthorDate: Sat Aug 1 11:13:22 2020 -0400
gnu: gdk-pixbuf: Disable failing tests. * gnu/packages/gtk.scm (gdk-pixbuf): Disable failing tests. [arguments]<#:phases>['disable-failing-tests]: New phase. Signed-off-by: Danny Milosavljevic <dan...@scratchpost.org> --- gnu/packages/gtk.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 1b28c1e..db48063 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -676,7 +676,14 @@ of a source code editor.") (("http://www.oasis-open.org/docbook/xml/4.3/") (string-append (assoc-ref inputs "docbook-xml") "/xml/dtd/docbook/")))) - #t))))) + #t)) + (add-before 'configure 'disable-failing-tests + (lambda _ + (substitute* "tests/meson.build" + (("\\[ 'pixbuf-fail', \\['conform', 'slow'\\], \\],") + "")) + #t)) + ))) (native-inputs `(("docbook-xml" ,docbook-xml-4.3) ("docbook-xsl" ,docbook-xsl)