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

Unified Diff: scripts/slave/recipes/catapult.py

Issue 1459203002: Run all catapult dev_server tests against canary builds as well as stable. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 1 month 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/catapult.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/catapult.py
diff --git a/scripts/slave/recipes/catapult.py b/scripts/slave/recipes/catapult.py
index 1c95b5f341965ca3ceb3a3888aebcfe630ab2978..d1cb7f25b9874100b7b465abaf59fb93ed22ee00 100644
--- a/scripts/slave/recipes/catapult.py
+++ b/scripts/slave/recipes/catapult.py
@@ -57,6 +57,11 @@ def RunSteps(api):
'dashboard', 'bin', 'run_dev_server_tests'),
['--no-install-hooks', '--no-use-local-chrome',
'--channel=stable'])
+ api.python('Dashboard Dev Server Tests Canary',
+ api.path['checkout'].join(
+ 'dashboard', 'bin', 'run_dev_server_tests'),
+ ['--no-install-hooks', '--no-use-local-chrome',
+ '--channel=canary'])
api.python('Dashboard Python Tests',
api.path['checkout'].join('dashboard', 'bin', 'run_py_tests'),
['--no-install-hooks'],
@@ -64,18 +69,34 @@ def RunSteps(api):
api.python('Tracing Python Tests',
api.path['checkout'].join('tracing', 'bin', 'run_py_tests'),
['--no-install-hooks'])
- api.python('Tracing Dev Server Tests',
+ api.python('Tracing Dev Server Tests Stable',
api.path['checkout'].join(
'tracing', 'bin', 'run_dev_server_tests'),
- ['--no-install-hooks', '--no-use-local-chrome'])
+ ['--no-install-hooks',
+ '--no-use-local-chrome',
+ '--channel=stable'])
+ api.python('Tracing Dev Server Tests Canary',
+ api.path['checkout'].join(
+ 'tracing', 'bin', 'run_dev_server_tests'),
+ ['--no-install-hooks',
+ '--no-use-local-chrome',
+ '--channel=canary'])
api.python('Py-vulcanize Tests',
api.path['checkout'].join(
'third_party', 'py_vulcanize', 'bin', 'run_py_tests'),
['--no-install-hooks'])
- api.python('Perf Insights Dev Server Tests',
+ api.python('Perf Insights Dev Server Tests Stable',
+ api.path['checkout'].join(
+ 'perf_insights', 'bin', 'run_dev_server_tests'),
+ ['--no-install-hooks',
+ '--no-use-local-chrome',
+ '--channel=stable'])
+ api.python('Perf Insights Dev Server Tests Canary',
api.path['checkout'].join(
'perf_insights', 'bin', 'run_dev_server_tests'),
- ['--no-install-hooks', '--no-use-local-chrome'])
+ ['--no-install-hooks',
+ '--no-use-local-chrome',
+ '--channel=canary'])
api.python('Systrace Tests',
api.path['checkout'].join('systrace', 'bin', 'run_tests'))
if not api.platform.is_win:
« no previous file with comments | « no previous file | scripts/slave/recipes/catapult.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698