diff autobot/projects/logparser/__init__.py @ 0:8e14b6322cc7

initial stub for ateam buildbot
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 22 Dec 2010 11:15:45 -0800
parents
children a3374cdd116d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/autobot/projects/logparser/__init__.py	Wed Dec 22 11:15:45 2010 -0800
@@ -0,0 +1,11 @@
+from autobot.process.factory import VirtualenvFactory
+
+class TestLogParserFactory(VirtualenvFactory):
+  """
+  factory to test the Mozilla log parser:
+  http://hg.mozilla.org/automation/logparser/
+  """
+  def __init__(self):
+    VirtualenvFactory.__init__(self, name='logparser',
+                               hg_sources=['http://hg.mozilla.org/automation/logparser/'])
+