changeset 174:a58270483c1e

allow mozmill url to be specified
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 31 Jan 2011 21:25:48 -0800
parents a8fe4ddab1ee
children 98944f934452
files autobot/projects/mozmill/__init__.py
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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]