Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
squad-compare-compat: add logfile url
Browse files Browse the repository at this point in the history
Signed-off-by: Anders Roxell <[email protected]>
  • Loading branch information
roxell committed May 14, 2024
1 parent 6e00417 commit 13201b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions squad-compare-compat
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def download_tests(project, build, environments, suites, output_filename):
build,
environments,
suites,
"{test.environment.slug}/{test.test_run.metadata.build_name}/{test.name} {test.status}",
"{test.environment.slug}/{test.test_run.metadata.build_name}/{test.name} {test.status} {test.test_run.log_file}",
output_filename,
)

Expand Down Expand Up @@ -142,7 +142,7 @@ def run():
compatlist = {}
native32list = {}
for line in file_lines:
test_name, test_result = line.split()
test_name, test_result, logfile = line.split()
device_name, build_name = test_name.split("/")[0:2]
test_name = "/".join(test_name.split("/")[1:])

Expand All @@ -152,7 +152,7 @@ def run():
native32list[test_name] = test_result

for line in file_lines:
test_name, test_result = line.split()
test_name, test_result, logfile = line.split()
device_name, build_name = test_name.split("/")[0:2]
test_name = "/".join(test_name.split("/")[1:])
if test_name in compatlist.keys() and device_name not in [
Expand Down

0 comments on commit 13201b1

Please sign in to comment.