changeset 225:e4ba2231c36e

add a stub for the mozbase project
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 29 Nov 2011 15:52:38 -0800
parents c989bbb323cd
children dd5ab8b3d94b
files autobot/projects/mozbase/__init__.py
diffstat 1 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/autobot/projects/mozbase/__init__.py	Tue Nov 29 15:52:38 2011 -0800
@@ -0,0 +1,21 @@
+from autobot.process.factory import SourceFactory
+from buildbot.steps.shell import ShellCommand
+from buildbot.steps.shell import WithProperties
+
+class TestMozbase(SourceFactory):
+    """
+    Base utilties for mozilla test harnesses:
+    https://github.com/mozilla/mozbase
+    """
+
+    sources = {'hg': ['https://github.com/mozilla/mozbase'],
+               'git': []}
+    
+    def __init__(self, platform=None):
+        SourceFactory.__init__(self, platform=platform)
+
+        # checkout the repositories
+        self.checkout()
+
+        # run the tests [TODO]
+