Bug 1567341 - Add --no-install to xpcshell-test for Android. r=firefox-build-system-reviewers,nalexander

This is consistent to geckoview-junit and mochitest.

Differential Revision: https://phabricator.services.mozilla.com/D106210
This commit is contained in:
Agi Sferro 2021-03-24 21:49:37 +00:00
parent 2f4fe0da3f
commit bc9ab239dc

View File

@ -366,6 +366,14 @@ def add_remote_arguments(parser):
help="Do not copy any files to device (to be used only if "
"device is already setup).",
)
parser.add_argument(
"--no-install",
action="store_false",
dest="setup",
default=True,
help="Don't install the app or any files to the device (to be used if "
"the device is already set up)",
)
parser.add_argument(
"--local-bin-dir",