view tests/example.py @ 99:17001bceec8f

only use formatters for options we actually know about from self.options; the rest should be handled from the client
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 30 Apr 2012 13:02:50 -0700
parents 490687e70723
children c530f6265deb
line wrap: on
line source

#!/usr/bin/env python

from configuration import Configuration

class ExampleConfiguration(Configuration):
    """example configuration instance"""
    options = {
        'activeTests': {'type': list,
                        'required': "No tests specified; please specify --activeTests",
                        'help': 'Specify tests to run',
                        'flags': ['-a', '--activeTests']}, # command line flags
        'title': {'help': 'talos run title'},
        'browser_path': {'required': True,
                         'flags': ['-e', '--executablePath'],
                         '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},
        'test_timeout': {'help': "Time to wait for the browser to output to the log file",
                         'default': 1200},
        'preferences': {'type': dict,
                        'flags': ['-p', '--pref']}
        }

if __name__ == '__main__':
    from pprint import pprint
    options, args = ExampleConfiguration().parse_args()
    pprint(options.__dict__)