Bug 1744884 - Remove no_interactive parameter from run_prewarm_avd in android.py since it was not used. r=firefox-build-system-reviewers,mhentges

Differential Revision: https://phabricator.services.mozilla.com/D135265
This commit is contained in:
ahochheiden 2022-01-21 19:35:49 +00:00
parent 833d4d05fc
commit 72bb536e37

View File

@ -539,9 +539,7 @@ def ensure_android_avd(
f"Could not find config file at {config_file_name}, something went wrong"
)
if prewarm_avd:
run_prewarm_avd(
adb_tool, emulator_tool, env, avd_name, avd_manifest, no_interactive
)
run_prewarm_avd(adb_tool, emulator_tool, env, avd_name, avd_manifest)
# When running in headless mode, the emulator does not run the cleanup
# step, and thus doesn't delete lock files. On some platforms, left-over
# lock files can cause the emulator to not start, so we remove them here.
@ -561,7 +559,6 @@ def run_prewarm_avd(
env,
avd_name,
avd_manifest,
no_interactive=False,
):
"""
Ensures the emulator is fully booted to save time on future iterations.