mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-10-30 14:44:09 +00:00
Remove Python 2 support
Python 2 is long dead and devlib does not support it anymore, so cleanup old Python 2-only code.
This commit is contained in:
committed by
Marc Bonnici
parent
28b78a93f1
commit
6fe4bce68d
@@ -89,8 +89,7 @@ class PcMark(ApkUiautoWorkload):
|
||||
def update_output(self, context):
|
||||
expected_results = len(self.regex_matches[self.major_version])
|
||||
zf = zipfile.ZipFile(os.path.join(context.output_directory, self.result_file), 'r').read('Result.xml')
|
||||
if sys.version_info[0] == 3:
|
||||
zf = zf.decode(sys.stdout.encoding)
|
||||
zf = zf.decode(sys.stdout.encoding)
|
||||
for line in zf.split('\n'):
|
||||
for regex in self.regex_matches[self.major_version]:
|
||||
match = regex.search(line)
|
||||
|
||||
Reference in New Issue
Block a user