Mercurial > hg > autobot
changeset 89:9b0ebf306b3c
autobot/template/master/master.cfg
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 12 Jan 2011 12:59:11 -0800 |
parents | 2a55644b9948 |
children | a94aca70dc35 |
files | autobot/projects/mozmill/__init__.py autobot/template/master/master.cfg |
diffstat | 2 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/projects/mozmill/__init__.py Wed Jan 12 11:33:27 2011 -0800 +++ b/autobot/projects/mozmill/__init__.py Wed Jan 12 12:59:11 2011 -0800 @@ -1,15 +1,15 @@ -from autobot.process.factory import PythonSourceFactory +from autobot.process.factory import VirtualenvFactory -class TestMozmillFactory(PythonSourceFactory): +class TestMozmillFactory(VirtualenvFactory): """ factory to test Mozmill http://github.com/mozautomation/mozmill """ - def __init__(self): + def __init__(self, firefox_url): # setup the environment - PythonSourceFactory.__init__(self, name='mozmill', - git_sources=['http://github.com/mozautomation/mozmill']) + VirtualenvFactory.__init__(self, name='mozmill', + git_sources=['http://github.com/mozautomation/mozmill']) # get firefox # [TODO]
--- a/autobot/template/master/master.cfg Wed Jan 12 11:33:27 2011 -0800 +++ b/autobot/template/master/master.cfg Wed Jan 12 12:59:11 2011 -0800 @@ -31,7 +31,7 @@ buildername = '%s - %s' % (factory, slave) b = {'name': buildername, 'slavename': slave, - 'builddir': "full", + 'builddir': factory, 'factory': f, } builders.append(b)