1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-25 03:59:11 +00:00

Fix linters/tests CI issues

This commit is contained in:
Luis Machado 2024-08-29 15:00:29 +01:00
parent e046461bfa
commit 77b3dfc61d
2 changed files with 1 additions and 6 deletions

View File

@ -399,7 +399,7 @@ class ApkUiautoWorkload(ApkUIWorkload):
class ApkUiautoJankTestWorkload(ApkUiautoWorkload):
def __init__(self, target, **kwargs):
super(ApkUiautoWorkload, self).__init__(target, **kwargs)
super(ApkUiautoJankTestWorkload, self).__init__(target, **kwargs)
self.gui = UiAutomatorJankTestGUI(self)
@ -608,9 +608,6 @@ class UiAutomatorJankTestGUI(UiAutomatorGUI):
_OUTPUT_GFXINFO_REGEX = re.compile(
r'INSTRUMENTATION_STATUS: (?P<name>[\w-]+)=(?P<value>[-+\d.]+)')
def __init__(self, owner, package=None, klass='UiAutomation', timeout=600):
super(UiAutomatorJankTestGUI, self).__init__(owner, package, klass, timeout)
def init_commands(self):
# Let UiAutomatorGUI handle the initialization of instrumented test
# commands.

View File

@ -17,8 +17,6 @@ from wa import Parameter, ApkUiautoJankTestWorkload, TestPackageHandler
from wa.utils.types import list_of_strs
import re
class Jetnews(ApkUiautoJankTestWorkload):
name = 'jetnews'