Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1211)

Unified Diff: scripts/slave/recipe_modules/chromium_android/api.py

Issue 2165733002: Misc Chromedriver bot fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipes/chromedriver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_android/api.py
diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py
index 87f53a5911d18d33d0002edb489de3d714abf5e3..a55c892050c6abdbceb39cd86f439bb33144b50e 100644
--- a/scripts/slave/recipe_modules/chromium_android/api.py
+++ b/scripts/slave/recipe_modules/chromium_android/api.py
@@ -943,7 +943,7 @@ class AndroidApi(recipe_api.RecipeApi):
)
def common_tests_setup_steps(self, perf_setup=False,
- remove_system_webview=False):
+ remove_system_webview=False, skip_wipe=False):
self.create_adb_symlink()
if self.c.gce_setup:
self.launch_gce_instances(snapshot=self.c.gce_snapshot,
@@ -963,6 +963,8 @@ class AndroidApi(recipe_api.RecipeApi):
'max_battery_temp': 350}
else:
kwargs = {}
+ if skip_wipe:
+ kwargs['skip_wipe'] = True
self.provision_devices(remove_system_webview=remove_system_webview,
**kwargs)
self.device_status()
« no previous file with comments | « no previous file | scripts/slave/recipes/chromedriver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698