view autobot/projects/profilemanager/__init__.py @ 58:008404759e4f

get m-c from hg for now :(
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 10 Jan 2011 15:38:09 -0800
parents a2fc7a08ec5c
children e66165f2f31b
line wrap: on
line source

from buildbot.process.factory import BuildFactory
from buildbot.steps.shell import ShellCommand

class TestProfileManager(BuildFactory):

    def __init__(self):

        # get mozilla central
        self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/mozilla-central']))

        # get profilemanager
        self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/automation/profilemanager'],
                                  haltOnFailure=True))