# HG changeset patch # User Jeff Hammel # Date 1294454700 28800 # Node ID 555fd1ba838df32b6bb5d029242b8b6e8d6a9de7 # Parent fdddf883c19d4e6886451c3ee06e1068f0b8ef9c stub out mozmill testor diff -r fdddf883c19d -r 555fd1ba838d autobot/projects/mozmill/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autobot/projects/mozmill/__init__.py Fri Jan 07 18:45:00 2011 -0800 @@ -0,0 +1,17 @@ +from autobot.process.factory import VirtualenvFactory + +class TestMozmillFactory(VirtualenvFactory): + """ + factory to test Mozmill + http://github.com/mozautomation/mozmill + """ + def __init__(self): + + # setup the environment + VirtualenvFactory.__init__(self, name='logparser', + git_sources=['http://github.com/mozautomation/mozmill']) + + # install the python + # TODO: utilize PythonSourceFactory + + # run the tests