1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Workload: Move gui deployment into setup

Ensures that the correct workload gui is deployed before each iteration.
This commit is contained in:
Marc Bonnici 2017-07-06 13:34:45 +01:00
parent 0b245ac2c8
commit 5232bc3504

View File

@ -194,10 +194,10 @@ class ApkUIWorkload(ApkWorkload):
def initialize(self, context):
super(ApkUIWorkload, self).initialize(context)
self.gui.deploy()
def setup(self, context):
super(ApkUIWorkload, self).setup(context)
self.gui.deploy()
self.gui.setup()
def run(self, context):