comparison autobot/projects/profilemanager/__init__.py @ 59:e66165f2f31b

complete automagic imports
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 10 Jan 2011 22:40:18 -0800
parents 008404759e4f
children 33fd34a75990
comparison
equal deleted inserted replaced
58:008404759e4f 59:e66165f2f31b
3 3
4 class TestProfileManager(BuildFactory): 4 class TestProfileManager(BuildFactory):
5 5
6 def __init__(self): 6 def __init__(self):
7 7
8 # install m-c + profilemanager
9 self.addStep(ShellCommand(command=['wget', 'http://hg.mozilla.org/automation/profilemanager/raw-file/tip/INSTALL.py']))
10 self.addStep(ShellCommand(command=['python', 'INSTALL.py']))
11
8 # get mozilla central 12 # get mozilla central
9 self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/mozilla-central'])) 13 # self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/mozilla-central']))
10 14
11 # get profilemanager 15 # get profilemanager
12 self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/automation/profilemanager'], 16 # self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/automation/profilemanager'],
13 haltOnFailure=True)) 17 # haltOnFailure=True))