mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05: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:
parent
c3c7ca7603
commit
3fced772e3
1 changed files with 8 additions and 0 deletions
|
@ -801,6 +801,14 @@ (define-public python-pygobject
|
|||
'("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)
|
||||
|
|
Loading…
Reference in a new issue