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:
parent
c3c7ca7603
commit
3fced772e3
1 changed files with 8 additions and 0 deletions
|
@ -801,6 +801,14 @@ useful for C++.")
|
||||||
'("test_atoms.py" "test_overrides_gtk.py"))
|
'("test_atoms.py" "test_overrides_gtk.py"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(build-system meson-build-system)
|
(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
|
(native-inputs
|
||||||
`(("glib-bin" ,glib "bin")
|
`(("glib-bin" ,glib "bin")
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
|
|
Reference in a new issue