1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-19 04:21:17 +00:00

Framework/Workload: Fix super propagation.

Previously super calls were not being propagated correctly so either
call the relevant super or remove the empty methods.
This commit is contained in:
Marc Bonnici 2017-11-27 13:27:55 +00:00 committed by setrofim
parent 74347b9e67
commit ac5741136d

View File

@ -243,18 +243,10 @@ class ApkWorkload(Workload):
self.apk.setup(context)
time.sleep(self.loading_time)
def run(self, context):
pass
def extract_results(self, context):
pass
def teardown(self, context):
super(ApkWorkload, self).teardown(context)
self.apk.teardown()
@once_per_instance
def finalize(self, context):
pass
def deploy_assets(self, context):
super(ApkWorkload, self).deploy_assets(context)