From f3b6b7b536339f1bbdd6bd1b21c49c2ab3cc3e6e Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Mon, 3 Jun 2024 22:09:07 +0200 Subject: [PATCH] Wait longer during test (#121) --- test_e2e.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_e2e.py b/test_e2e.py index 7e0ddaf..749f5c6 100755 --- a/test_e2e.py +++ b/test_e2e.py @@ -116,7 +116,7 @@ def await_welcome_screen(expect_light): 'Polling to observe a %s screen (which means that bambam ' 'has started AND is displaying a welcome screen where the text ' 'is blue).' % comment) - attempt_count = 40 + attempt_count = 400 sleep_delay = 0.25 for attempt in range(attempt_count): current_average_hsl = get_average_hsl() @@ -134,7 +134,7 @@ def await_welcome_screen(expect_light): def await_blank_screen(expect_light: bool): - attempt_count = 40 + attempt_count = 400 sleep_delay = 0.25 if expect_light: def check(c): return c >= 248