Skip to content

Commit

Permalink
Try test plugin screens load a second time if the first time except T…
Browse files Browse the repository at this point in the history
…ypeError

I hope this will reduce fake build fails.

force-test skip-telease
  • Loading branch information
Taapat committed Sep 13, 2023
1 parent 399a647 commit f384f41
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/try_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit f384f41

Please sign in to comment.