X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2c10049e10195f88b1eefec26f70f5019d316cc8..3ad1f5540aa20e5b8132ededc367d8f319b2d5dd:/mytest.py diff --git a/mytest.py b/mytest.py index 8ae28ab8..522b9b39 100644 --- a/mytest.py +++ b/mytest.py @@ -29,7 +29,7 @@ try: def runReactor(): reactor.run() -except: +except ImportError: print "twisted not available" def runReactor(): runMainloop() @@ -42,6 +42,7 @@ from Screens.Wizard import wizardManager from Screens.StartWizard import * from Screens.TutorialWizard import * from Tools.BoundFunction import boundFunction +from Plugins.Plugin import PluginDescriptor had = dict() @@ -270,12 +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) + quitMainloop(*result) + return screen = screensToRun[0]