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

Unified Diff: client/example/common.py

Issue 2453873002: Add --output option to Swarming client and pass it through to the bot (Closed)
Patch Set: Extra help text for examples Created 4 years, 2 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 | « appengine/swarming/test_env_handlers.py ('k') | client/swarming.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/example/common.py
diff --git a/client/example/common.py b/client/example/common.py
index 8ecd017bd9062f194d4906cb484f730bae86bf5b..abe54af4964341a427241a5297e82063bad9104c 100644
--- a/client/example/common.py
+++ b/client/example/common.py
@@ -36,7 +36,7 @@ def parse_args(use_isolate_server, use_swarming):
parser.add_option(
'-I', '--isolate-server',
metavar='URL', default=os.environ.get('ISOLATE_SERVER', ''),
- help='Isolate server to use')
+ help='Isolate server to use (default: ISOLATE_SERVER env var)')
if use_swarming:
task_name = '%s-%s-hello_world' % (
getpass.getuser(),
@@ -47,7 +47,7 @@ def parse_args(use_isolate_server, use_swarming):
parser.add_option(
'-S', '--swarming',
metavar='URL', default=os.environ.get('SWARMING_SERVER', ''),
- help='Swarming server to use')
+ help='Swarming server to use (default: SWARMING_SERVER env var)')
parser.add_option(
'-o', '--os', default=sys.platform,
help='Swarming slave OS to request. Should be one of the valid '
« no previous file with comments | « appengine/swarming/test_env_handlers.py ('k') | client/swarming.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698