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

Unified Diff: catapult_build/build_steps.py

Issue 2056863002: [catapult_build] Disable everything but devil tests on Android. (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: update test Created 4 years, 6 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 | catapult_build/build_steps_unittest.py » ('j') | 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 af66aa2bc1365889a4efda7fd266daa603792a4a..0144c4053676ad919ac63a3dc4e09af2a273221f 100644
--- a/catapult_build/build_steps.py
+++ b/catapult_build/build_steps.py
@@ -17,7 +17,7 @@ import sys
# uses_sandbox_env (optional): True if CHROME_DEVEL_SANDBOX must be in
# environment.
# disabled (optional): List of platforms the test is disabled on. May contain
-# 'win', 'mac', or 'linux'.
+# 'win', 'mac', 'linux', or 'android'.
# outputs_presentation_json (optional): If True, pass in --presentation-json
# argument to the test executable to allow it to update the buildbot status
# page. More details here:
@@ -26,18 +26,22 @@ _CATAPULT_TESTS = [
{
'name': 'BattOr Smoke Tests',
'path': 'common/battor/battor/battor_wrapper_devicetest.py',
+ 'disabled': ['android'],
},
{
'name': 'BattOr Unit Tests',
'path': 'common/battor/bin/run_py_tests',
+ 'disabled': ['android'],
},
{
'name': 'Build Python Tests',
'path': 'catapult_build/bin/run_py_tests',
+ 'disabled': ['android'],
},
{
'name': 'Catapult Base Tests',
'path': 'catapult_base/bin/run_tests',
+ 'disabled': ['android'],
},
{
'name': 'Dashboard Dev Server Tests Canary',
@@ -48,6 +52,7 @@ _CATAPULT_TESTS = [
'--channel=canary'
],
'outputs_presentation_json': True,
+ 'disabled': ['android'],
},
{
'name': 'Dashboard Dev Server Tests Stable',
@@ -58,16 +63,19 @@ _CATAPULT_TESTS = [
'--channel=stable',
],
'outputs_presentation_json': True,
+ 'disabled': ['android'],
},
{
'name': 'Dashboard Python Tests',
'path': 'dashboard/bin/run_py_tests',
'additional_args': ['--no-install-hooks'],
'uses_app_engine_sdk': True,
+ 'disabled': ['android'],
},
{
'name': 'Dependency Manager Tests',
'path': 'dependency_manager/bin/run_tests',
+ 'disabled': ['android'],
},
{
'name': 'Devil Python Tests',
@@ -83,6 +91,7 @@ _CATAPULT_TESTS = [
'--channel=canary'
],
'outputs_presentation_json': True,
+ 'disabled': ['android'],
},
{
'name': 'Perf Insights Dev Server Tests Stable',
@@ -94,24 +103,29 @@ _CATAPULT_TESTS = [
],
'uses_sandbox_env': True,
'outputs_presentation_json': True,
+ 'disabled': ['android'],
},
{
'name': 'Perf Insights Python Tests',
'path': 'perf_insights/bin/run_py_tests',
'additional_args': ['--no-install-hooks'],
+ 'disabled': ['android'],
},
{
'name': 'Perf VINN Insights Tests',
'path': 'perf_insights/bin/run_vinn_tests',
+ 'disabled': ['android'],
},
{
'name': 'Py-vulcanize Tests',
'path': 'third_party/py_vulcanize/bin/run_py_tests',
'additional_args': ['--no-install-hooks'],
+ 'disabled': ['android'],
},
{
'name': 'Systrace Tests',
'path': 'systrace/bin/run_tests',
+ 'disabled': ['android'],
},
{
'name': 'Telemetry Tests with Stable Browser',
@@ -121,6 +135,7 @@ _CATAPULT_TESTS = [
'--start-xvfb'
],
'uses_sandbox_env': True,
+ 'disabled': ['android'],
},
{
'name': 'Telemetry Integration Tests with Stable Browser',
@@ -130,7 +145,7 @@ _CATAPULT_TESTS = [
'--browser=reference',
],
'uses_sandbox_env': True,
- 'disabled': ['linux'], # TODO(nedn): enable this on linux
+ 'disabled': ['android', 'linux'], # TODO(nedn): enable this on linux
},
{
'name': 'Tracing Dev Server Tests Canary',
@@ -141,6 +156,7 @@ _CATAPULT_TESTS = [
'--channel=canary'
],
'outputs_presentation_json': True,
+ 'disabled': ['android'],
},
{
'name': 'Tracing Dev Server Tests Stable',
@@ -151,19 +167,23 @@ _CATAPULT_TESTS = [
'--channel=stable',
],
'outputs_presentation_json': True,
+ 'disabled': ['android'],
},
{
'name': 'Tracing D8 Tests',
'path': 'tracing/bin/run_vinn_tests',
+ 'disabled': ['android'],
},
{
'name': 'Tracing Python Tests',
'path': 'tracing/bin/run_py_tests',
'additional_args': ['--no-install-hooks'],
+ 'disabled': ['android'],
},
{
'name': 'Vinn Tests',
'path': 'third_party/vinn/run_test',
+ 'disabled': ['android'],
},
]
« no previous file with comments | « no previous file | catapult_build/build_steps_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698