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

Unified Diff: catapult_build/build_steps.py

Issue 2236493003: [catapult android trybot] Make Telemetry tests run on Android (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Checkpoint. Created 4 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: catapult_build/build_steps.py
diff --git a/catapult_build/build_steps.py b/catapult_build/build_steps.py
index 86a91ca574f26271d34584bd4f60348f9e04c036..abff545556ca030063086fc2b4caf2c51b70f56e 100644
--- a/catapult_build/build_steps.py
+++ b/catapult_build/build_steps.py
@@ -130,13 +130,25 @@ _CATAPULT_TESTS = [
'path': 'systrace/bin/run_tests',
},
{
- 'name': 'Telemetry Tests with Stable Browser',
+ 'name': 'Telemetry Tests with Stable Browser (Desktop)',
'path': 'telemetry/bin/run_tests',
'additional_args': [
'--browser=reference',
'--start-xvfb'
aiolos (Not reviewing) 2016/08/11 16:36:10 Do we not need to start the xvfb display on androi
nednguyen 2016/08/11 16:37:17 Yeah, we don't need xvfb display on android
],
'uses_sandbox_env': True,
+ 'disabled': ['android'],
+ },
+ {
+ 'name': 'Telemetry Tests with Stable Browser (Android)',
+ 'path': 'telemetry/bin/run_tests',
+ 'additional_args': [
+ '--browser=reference',
+ '--device=android',
+ '--jobs=1'
+ ],
+ 'uses_sandbox_env': True,
+ 'disabled': ['win', 'mac', 'linux']
},
{
'name': 'Telemetry Integration Tests with Stable Browser',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698