Mercurial > hg > autobot
changeset 19:6abe5fb1fafc
got a working buildmaster
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 07 Jan 2011 14:05:46 -0800 |
parents | 016ffd7bfd99 |
children | 30ec24255ce9 |
files | autobot/process/factory.py autobot/projects/__init__.py |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/process/factory.py Fri Jan 07 13:57:39 2011 -0800 +++ b/autobot/process/factory.py Fri Jan 07 14:05:46 2011 -0800 @@ -1,5 +1,6 @@ from autobot.steps import CreateVirtualenv from buildbot.process.factory import BuildFactory +from buildbot.steps.shell import ShellCommand """ generic factories
--- a/autobot/projects/__init__.py Fri Jan 07 13:57:39 2011 -0800 +++ b/autobot/projects/__init__.py Fri Jan 07 14:05:46 2011 -0800 @@ -1,4 +1,4 @@ from logparser import TestLogParserFactory # TODO: import these automagically -factories = {'logparser': TestLogParserFactory} +factories = {'logparser': TestLogParserFactory()}