# HG changeset patch # User Jeff Hammel # Date 1343770532 25200 # Node ID a79c12daf9d746be17b46912d85caa319fa30ce2 # Parent 22bb1ac50eb729eafcde983867bbfa146a2da857 hopefully fix profilemanager factory diff -r 22bb1ac50eb7 -r a79c12daf9d7 autobot/projects/logparser/__init__.py --- a/autobot/projects/logparser/__init__.py Tue Jul 31 14:20:40 2012 -0700 +++ b/autobot/projects/logparser/__init__.py Tue Jul 31 14:35:32 2012 -0700 @@ -9,7 +9,7 @@ """ sources = {'hg': 'http://hg.mozilla.org/automation/logparser/'} - + def __init__(self): # setup the environment and install the python diff -r 22bb1ac50eb7 -r a79c12daf9d7 autobot/projects/profilemanager/__init__.py --- a/autobot/projects/profilemanager/__init__.py Tue Jul 31 14:20:40 2012 -0700 +++ b/autobot/projects/profilemanager/__init__.py Tue Jul 31 14:35:32 2012 -0700 @@ -1,20 +1,20 @@ -from buildbot.process.factory import BuildFactory +from autobot.process.factory import SourceFactory from buildbot.steps.shell import ShellCommand -class TestProfileManager(BuildFactory): +class TestProfileManager(SourceFactory): """ Test the ProfileManager standalone XUL application: http://hg.mozilla.org/automation/profilemanager/ """ + sources = {'hg': ['http://hg.mozilla.org/automation/profilemanager/']} def __init__(self): - BuildFactory.__init__(self) + SourceFactory.__init__(self) # install m-c + profilemanager - self.addStep(ShellCommand(command=['wget', 'http://hg.mozilla.org/automation/profilemanager/raw-file/tip/INSTALL.py'])) - self.addStep(ShellCommand(command=['python', 'INSTALL.py'])) +# self.addStep(ShellCommand(command=['python', 'INSTALL.py'])) # get mozilla central # self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/mozilla-central']))