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', |