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

Unified Diff: tools/testing/webdriver_test_setup.py

Issue 10829408: Smarter "new interesting code" detection. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 | « tools/testing/perf_testing/run_perf_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/webdriver_test_setup.py
===================================================================
--- tools/testing/webdriver_test_setup.py (revision 11181)
+++ tools/testing/webdriver_test_setup.py (working copy)
@@ -38,17 +38,18 @@
def parse_args():
parser = optparse.OptionParser()
- parser.add_option('--firefox', '-f', dest='firefox', help="Don't install "
- "Firefox", action='store_true', default=False)
- parser.add_option('--chromedriver', '-c', dest='chromedriver', help="Don't "
- "install chromedriver.", action='store_true', default=False)
- parser.add_option('--seleniumrc', '-s', dest='seleniumrc', help="Don't "
- "install the Selenium RC server (used for Safari and Opera tests).",
- action='store_true', default=False)
- parser.add_option('--python', '-p', dest='python', help="Don't "
- "install Selenium python bindings.", action='store_true', default=False)
+ parser.add_option('--firefox', '-f', dest='firefox',
+ help="Don't install Firefox", action='store_true', default=False)
+ parser.add_option('--chromedriver', '-c', dest='chromedriver',
+ help="Don't install chromedriver.", action='store_true', default=False)
+ parser.add_option('--seleniumrc', '-s', dest='seleniumrc',
+ help="Don't install the Selenium RC server (used for Safari and Opera "
+ "tests).", action='store_true', default=False)
+ parser.add_option('--python', '-p', dest='python',
+ help="Don't install Selenium python bindings.", action='store_true',
+ default=False)
parser.add_option('--buildbot', '-b', dest='buildbot', action='store_true',
- help='Perform a buildbot selenium setup (buildbots have a different' + \
+ help='Perform a buildbot selenium setup (buildbots have a different' +
'location for their python executable).', default=False)
args, ignored = parser.parse_args()
return args
« no previous file with comments | « tools/testing/perf_testing/run_perf_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698