# HG changeset patch # User Jeff Hammel # Date 1296537948 28800 # Node ID a58270483c1e3653ccc2daf3ce58042e26c4d3e8 # Parent a8fe4ddab1eed3fcbcfbf9997117508818952916 allow mozmill url to be specified diff -r a8fe4ddab1ee -r a58270483c1e autobot/projects/mozmill/__init__.py --- a/autobot/projects/mozmill/__init__.py Mon Jan 31 21:21:15 2011 -0800 +++ b/autobot/projects/mozmill/__init__.py Mon Jan 31 21:25:48 2011 -0800 @@ -10,10 +10,10 @@ sources = {'git': ['http://github.com/mozautomation/mozmill.git']} - def __init__(self, firefox_url=None): + def __init__(self, firefox_url=None, git=None): # setup the environment - VirtualenvFactory.__init__(self, name='mozmill') + VirtualenvFactory.__init__(self, name='mozmill', git=git) self.addStep(ShellCommand(command=[WithProperties('%(python)s'), 'setup_development.py'], workdir=WithProperties('%(virtualenv)s/src/mozmill'), description='setup_development.py' @@ -28,3 +28,4 @@ # [TODO] # run the tests + # [TODO]