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

Unified Diff: infra/bots/test_skia.py

Issue 1768333002: Swarming bots: fix trybots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 | « infra/bots/test_skia.isolate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/test_skia.py
diff --git a/infra/bots/test_skia.py b/infra/bots/test_skia.py
index d57fb7e37a6b8427317162334bb16984c0b169cd..77121d68139757827b4add3db599f4f950c3a7c4 100644
--- a/infra/bots/test_skia.py
+++ b/infra/bots/test_skia.py
@@ -21,11 +21,14 @@ def main():
parser.add_argument('--slave_name', required=True)
parser.add_argument('--revision', required=True)
parser.add_argument('--swarm_out_dir', required=True)
+ parser.add_argument('--issue')
+ parser.add_argument('--patchset')
args = parser.parse_args()
with utils.print_timings():
bot = common.BotInfo(args.builder_name, os.path.abspath(args.swarm_out_dir))
bot.test_steps(args.revision, args.master_name, args.slave_name,
- args.build_number)
+ args.build_number, issue=args.issue or None,
+ patchset=args.patchset or None)
if __name__ == '__main__':
« no previous file with comments | « infra/bots/test_skia.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698