# HG changeset patch # User Jeff Hammel # Date 1294865951 28800 # Node ID 9b0ebf306b3c6e9e8a6a88dae9bfeab20ff971c5 # Parent 2a55644b9948f1500fc029b18091872bea55997f autobot/template/master/master.cfg diff -r 2a55644b9948 -r 9b0ebf306b3c autobot/projects/mozmill/__init__.py --- 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] diff -r 2a55644b9948 -r 9b0ebf306b3c autobot/template/master/master.cfg --- 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)