1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Roland Mas <roland.mas@entierement.net>
Date: Fri, 11 Oct 2024 22:34:41 +0200
Subject: Increase GUI_WAIT to cope with slow arches
---
tests/test_pymsgbox.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_pymsgbox.py b/tests/test_pymsgbox.py
index 7bed43b..f09a8a8 100644
--- a/tests/test_pymsgbox.py
+++ b/tests/test_pymsgbox.py
@@ -12,7 +12,7 @@ import pyautogui # PyAutoGUI simulates key presses on the message boxes.
pyautogui.PAUSE = 0.1
-GUI_WAIT = 0.4 # if tests start failing, maybe try bumping this up a bit (though that'll slow the tests down)
+GUI_WAIT = 1 # if tests start failing, maybe try bumping this up a bit (though that'll slow the tests down)
"""
|