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

Side by Side Diff: infra/tools/new_tool/templates/tool.template

Issue 1172053003: Created infra/tools/new_tool (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: More tests Created 5 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 unified diff | Download patch
« no previous file with comments | « infra/tools/new_tool/templates/test.template ('k') | infra/tools/new_tool/test/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 """Testable functions for {Toolname}."""
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """Testable functions for Antibody."""
6 2
7 import logging 3 import logging
8 4
9 5
10 # https://storage.googleapis.com/chromium-infra-docs/infra/html/logging.html 6 # https://storage.googleapis.com/chromium-infra-docs/infra/html/logging.html
11 LOGGER = logging.getLogger(__name__) 7 LOGGER = logging.getLogger(__name__)
12 8
13 9
14 def add_argparse_options(parser): 10 def add_argparse_options(parser):
15 """Define command-line arguments.""" 11 """Define command-line arguments."""
16 parser.add_argument('--my-argument', '-m', help='') 12 parser.add_argument('--my-argument', '-m', help='')
OLDNEW
« no previous file with comments | « infra/tools/new_tool/templates/test.template ('k') | infra/tools/new_tool/test/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698