# HG changeset patch # User Jeff Hammel # Date 1294700259 28800 # Node ID 0873bb51db09cba26f26c38606c916a3e37fba22 # Parent c2a01aae134170725d5dfeeabe7fba67966a5a27 logparser now works; now for profilemanager diff -r c2a01aae1341 -r 0873bb51db09 autobot/projects/logparser/__init__.py --- a/autobot/projects/logparser/__init__.py Mon Jan 10 14:49:59 2011 -0800 +++ b/autobot/projects/logparser/__init__.py Mon Jan 10 14:57:39 2011 -0800 @@ -9,13 +9,10 @@ """ def __init__(self): - # setup the environment + # setup the environment and install the python PythonSourceFactory.__init__(self, name='logparser', hg_sources=['http://hg.mozilla.org/automation/logparser/']) - # install the python - # TODO: utilize PythonSourceFactory - # run the tests - self.addStep(ShellCommand(command=['python'], + self.addStep(ShellCommand(command=['python', 'test_logparser.py'], workdir=WithProperties('%(virtualenv)s/src/logparser/logparser'))) diff -r c2a01aae1341 -r 0873bb51db09 autobot/projects/profilemanager/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autobot/projects/profilemanager/__init__.py Mon Jan 10 14:57:39 2011 -0800 @@ -0,0 +1,9 @@ +from buildbot.process.factory import BuildFactory +from buildbot.steps.shell import ShellCommand + +class TestProfileManager(BuildFactory): + + def __init__(self): + + # get mozilla central +