aboutsummaryrefslogtreecommitdiff
path: root/mytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'mytest.py')
-rw-r--r--mytest.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/mytest.py b/mytest.py
index 9d2998ba..522b9b39 100644
--- a/mytest.py
+++ b/mytest.py
@@ -271,14 +271,19 @@ def runScreenTest():
session.nav = Navigation()
- screensToRun = wizardManager.getWizards()
+ screensToRun = [ ]
+
for p in plugins.getPlugins(PluginDescriptor.WHERE_WIZARD):
screensToRun.append(p.__call__)
+
+ screensToRun += wizardManager.getWizards()
+
screensToRun.append(Screens.InfoBar.InfoBar)
def runNextScreen(session, screensToRun, *result):
if result:
quitMainloop(*result)
+ return
screen = screensToRun[0]