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

Side by Side Diff: scripts/slave/recipes/catapult.expected/basic.json

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 unified diff | Download patch
« no previous file with comments | « scripts/slave/recipes/catapult.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/bot_update.py", 6 "[BUILD]/scripts/slave/bot_update.py",
7 "--master", 7 "--master",
8 "master.client.catapult", 8 "master.client.catapult",
9 "--builder", 9 "--builder",
10 "windows", 10 "windows",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "--no-use-local-chrome", 113 "--no-use-local-chrome",
114 "--channel=stable" 114 "--channel=stable"
115 ], 115 ],
116 "cwd": "[SLAVE_BUILD]", 116 "cwd": "[SLAVE_BUILD]",
117 "name": "Dashboard Dev Server Tests Stable" 117 "name": "Dashboard Dev Server Tests Stable"
118 }, 118 },
119 { 119 {
120 "cmd": [ 120 "cmd": [
121 "python", 121 "python",
122 "-u", 122 "-u",
123 "[SLAVE_BUILD]/catapult/dashboard/bin/run_dev_server_tests",
124 "--no-install-hooks",
125 "--no-use-local-chrome",
126 "--channel=canary"
127 ],
128 "cwd": "[SLAVE_BUILD]",
129 "name": "Dashboard Dev Server Tests Canary"
130 },
131 {
132 "cmd": [
133 "python",
134 "-u",
123 "[SLAVE_BUILD]/catapult/dashboard/bin/run_py_tests", 135 "[SLAVE_BUILD]/catapult/dashboard/bin/run_py_tests",
124 "--no-install-hooks" 136 "--no-install-hooks"
125 ], 137 ],
126 "cwd": "[SLAVE_BUILD]", 138 "cwd": "[SLAVE_BUILD]",
127 "env": { 139 "env": {
128 "PYTHONPATH": "%(PYTHONPATH)s:[SLAVE_BUILD]/google_appengine" 140 "PYTHONPATH": "%(PYTHONPATH)s:[SLAVE_BUILD]/google_appengine"
129 }, 141 },
130 "name": "Dashboard Python Tests" 142 "name": "Dashboard Python Tests"
131 }, 143 },
132 { 144 {
133 "cmd": [ 145 "cmd": [
134 "python", 146 "python",
135 "-u", 147 "-u",
136 "[SLAVE_BUILD]/catapult/tracing/bin/run_py_tests", 148 "[SLAVE_BUILD]/catapult/tracing/bin/run_py_tests",
137 "--no-install-hooks" 149 "--no-install-hooks"
138 ], 150 ],
139 "cwd": "[SLAVE_BUILD]", 151 "cwd": "[SLAVE_BUILD]",
140 "name": "Tracing Python Tests" 152 "name": "Tracing Python Tests"
141 }, 153 },
142 { 154 {
143 "cmd": [ 155 "cmd": [
144 "python", 156 "python",
145 "-u", 157 "-u",
146 "[SLAVE_BUILD]/catapult/tracing/bin/run_dev_server_tests", 158 "[SLAVE_BUILD]/catapult/tracing/bin/run_dev_server_tests",
147 "--no-install-hooks", 159 "--no-install-hooks",
148 "--no-use-local-chrome" 160 "--no-use-local-chrome",
161 "--channel=stable"
149 ], 162 ],
150 "cwd": "[SLAVE_BUILD]", 163 "cwd": "[SLAVE_BUILD]",
151 "name": "Tracing Dev Server Tests" 164 "name": "Tracing Dev Server Tests Stable"
152 }, 165 },
153 { 166 {
154 "cmd": [ 167 "cmd": [
168 "python",
169 "-u",
170 "[SLAVE_BUILD]/catapult/tracing/bin/run_dev_server_tests",
171 "--no-install-hooks",
172 "--no-use-local-chrome",
173 "--channel=canary"
174 ],
175 "cwd": "[SLAVE_BUILD]",
176 "name": "Tracing Dev Server Tests Canary"
177 },
178 {
179 "cmd": [
155 "python", 180 "python",
156 "-u", 181 "-u",
157 "[SLAVE_BUILD]/catapult/third_party/py_vulcanize/bin/run_py_tests", 182 "[SLAVE_BUILD]/catapult/third_party/py_vulcanize/bin/run_py_tests",
158 "--no-install-hooks" 183 "--no-install-hooks"
159 ], 184 ],
160 "cwd": "[SLAVE_BUILD]", 185 "cwd": "[SLAVE_BUILD]",
161 "name": "Py-vulcanize Tests" 186 "name": "Py-vulcanize Tests"
162 }, 187 },
163 { 188 {
164 "cmd": [ 189 "cmd": [
165 "python", 190 "python",
166 "-u", 191 "-u",
167 "[SLAVE_BUILD]/catapult/perf_insights/bin/run_dev_server_tests", 192 "[SLAVE_BUILD]/catapult/perf_insights/bin/run_dev_server_tests",
168 "--no-install-hooks", 193 "--no-install-hooks",
169 "--no-use-local-chrome" 194 "--no-use-local-chrome",
195 "--channel=stable"
170 ], 196 ],
171 "cwd": "[SLAVE_BUILD]", 197 "cwd": "[SLAVE_BUILD]",
172 "name": "Perf Insights Dev Server Tests" 198 "name": "Perf Insights Dev Server Tests Stable"
173 }, 199 },
174 { 200 {
175 "cmd": [ 201 "cmd": [
202 "python",
203 "-u",
204 "[SLAVE_BUILD]/catapult/perf_insights/bin/run_dev_server_tests",
205 "--no-install-hooks",
206 "--no-use-local-chrome",
207 "--channel=canary"
208 ],
209 "cwd": "[SLAVE_BUILD]",
210 "name": "Perf Insights Dev Server Tests Canary"
211 },
212 {
213 "cmd": [
176 "python", 214 "python",
177 "-u", 215 "-u",
178 "[SLAVE_BUILD]/catapult/systrace/bin/run_tests" 216 "[SLAVE_BUILD]/catapult/systrace/bin/run_tests"
179 ], 217 ],
180 "cwd": "[SLAVE_BUILD]", 218 "cwd": "[SLAVE_BUILD]",
181 "name": "Systrace Tests" 219 "name": "Systrace Tests"
182 }, 220 },
183 { 221 {
184 "cmd": [ 222 "cmd": [
185 "python", 223 "python",
(...skipping 30 matching lines...) Expand all
216 ], 254 ],
217 "cwd": "[SLAVE_BUILD]", 255 "cwd": "[SLAVE_BUILD]",
218 "name": "Perf Insights Python Tests" 256 "name": "Perf Insights Python Tests"
219 }, 257 },
220 { 258 {
221 "name": "$result", 259 "name": "$result",
222 "recipe_result": null, 260 "recipe_result": null,
223 "status_code": 0 261 "status_code": 0
224 } 262 }
225 ] 263 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/catapult.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698