From f384f414d818d2f189818dcc12e4580fb011bfce Mon Sep 17 00:00:00 2001 From: Madars Auns Date: Wed, 13 Sep 2023 09:24:32 +0300 Subject: [PATCH] Try test plugin screens load a second time if the first time except TypeError I hope this will reduce fake build fails. force-test skip-telease --- test/try_plugin.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/try_plugin.py b/test/try_plugin.py index a146d4d2..b9b6368a 100644 --- a/test/try_plugin.py +++ b/test/try_plugin.py @@ -416,4 +416,10 @@ def test_plugin(): if __name__ == '__main__': - try_plugin_screens_load() + try: + try_plugin_screens_load() + except TypeError as ex: + print('Error %s, try second time' % str(ex)) + from time import sleep + sleep(10) + try_plugin_screens_load()