Skip to content
Snippets Groups Projects
Commit ec64cd9f authored by Mike Conley's avatar Mike Conley
Browse files

Bug 1900618 - Add an automation test condition to mozinfo. r=jmaher,taskgraph-reviewers

parent d748b4b1
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,7 @@ def build_dict(config, env=os.environ):
d["isolated_process"] = (
substs.get("MOZ_ANDROID_CONTENT_SERVICE_ISOLATED_PROCESS") == "1"
)
d["automation"] = substs.get("MOZ_AUTOMATION") == "1"
def guess_platform():
if d["buildapp"] == "browser":
......
......@@ -136,6 +136,8 @@ def guess_mozinfo_from_task(task, repo=""):
info[tag] = True
else:
info[tag] = False
info["automation"] = True
return info
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment