We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 070ae0b commit 9c4dcabCopy full SHA for 9c4dcab
1 file changed
report/firefox_code_coverage/codecoverage.py
@@ -140,6 +140,9 @@ def get_platform(task_name):
140
return "windows"
141
elif "macosx" in task_name:
142
return "macos"
143
+ # Assume source-test tasks without the OS name in the label are on Linux.
144
+ elif "source-test" in task_name:
145
+ return "linux"
146
else:
147
raise Exception(f"Unknown platform for {task_name}")
148
0 commit comments