Mercurial > hg > configuration
diff tests/example.py @ 19:cadc9514f60a
we have a legitimately failing test!
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 26 Mar 2012 13:54:43 -0700 |
parents | 12162afcd78f |
children | f6c3f91af7f2 |
line wrap: on
line diff
--- a/tests/example.py Mon Mar 26 13:19:55 2012 -0700 +++ b/tests/example.py Mon Mar 26 13:54:43 2012 -0700 @@ -10,9 +10,11 @@ 'title': {'help': 'talos run title'}, 'browser_path': {'required': True, 'flags': ['-e', '--executablePath'], - 'help': 'path to firefox'} + 'help': 'path to firefox'}, + 'develop': {'help': "useful for running tests on a developer machine. Creates a local webserver and doesn't upload to the graph servers.", + 'type': bool} } if __name__ == '__main__': - parser = ExampleConfiguration().parser() - parser.parse_args() + options, args = ExampleConfiguration().parse() +