1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-pygobject: Extend test timeout.

* gnu/packages/glib.scm (python-pygobject)[arguments]: Replace check
phase and extend the test timeout.
This commit is contained in:
Efraim Flashner
2021-08-29 13:54:33 +03:00
parent c3c7ca7603
commit 3fced772e3

View File

@@ -801,6 +801,14 @@ useful for C++.")
'("test_atoms.py" "test_overrides_gtk.py"))
#t)))))
(build-system meson-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
;; The default 90 seconds can be too low on slower machines.
(invoke "meson" "test" "--timeout-multiplier" "5")))))))
(native-inputs
`(("glib-bin" ,glib "bin")
("pkg-config" ,pkg-config)