From: Matthias Clasen Date: Fri, 5 May 2023 20:07:06 +0000 (-0400) Subject: ci: Bump timeouts for headless tests X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~304^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8ad1189b0b6653d79e1f4ac68ede89eb31dd552b;p=gtk4.git ci: Bump timeouts for headless tests --- diff --git a/testsuite/headless/headless-input-tests.py b/testsuite/headless/headless-input-tests.py index 99e5251e80..d09d162cad 100644 --- a/testsuite/headless/headless-input-tests.py +++ b/testsuite/headless/headless-input-tests.py @@ -218,7 +218,7 @@ def launch_observer(): window.maximize() window.present() - wait(500) + wait(2000) assert window.is_active(), "Observer not active" assert window.get_width() == 1024, "Window not maximized" @@ -360,7 +360,7 @@ def launch_drag_source(value): ds_window.maximize() ds_window.present() - wait(500) + wait(2000) assert ds_window.is_active(), "drag source not active" assert ds_window.get_width() == 1024, "Window not maximized" @@ -410,7 +410,7 @@ def launch_drop_target(): dt_window.maximize() dt_window.present() - wait(500) + wait(2000) assert dt_window.is_active(), "drop target not active" assert dt_window.get_width() == 1024, "Window not maximized" @@ -456,7 +456,7 @@ def dnd_tests(): wait(150) pointer_move(120, 150) - expect_drag(timeout=1000) + expect_drag(timeout=2000) launch_drop_target() wait(100);