Mercurial > hg > autobot
changeset 275:22bb1ac50eb7
remove obselete project
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 31 Jul 2012 14:20:40 -0700 |
parents | b19992f78f5c |
children | a79c12daf9d7 |
files | README.txt autobot/projects/manifestdestiny/__init__.py |
diffstat | 2 files changed, 0 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- a/README.txt Tue Jul 31 14:02:58 2012 -0700 +++ b/README.txt Tue Jul 31 14:20:40 2012 -0700 @@ -317,4 +317,3 @@ branch pair. It is then updated as the slaves need and (e.g.) cloned from there. This should effectively minimize fetch time. -* use MozInfo package for slave information
--- a/autobot/projects/manifestdestiny/__init__.py Tue Jul 31 14:02:58 2012 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -from autobot.process.factory import PythonSourceFactory -from buildbot.steps.shell import ShellCommand -from buildbot.steps.shell import WithProperties - -class TestManifestdestiny(PythonSourceFactory): - """ - test Mozilla test manifests - http://hg.mozilla.org/automation/ManifestDestiny/ - """ - - sources = {'hg': ['http://hg.mozilla.org/automation/ManifestDestiny/'], - 'git': []} - - def __init__(self): - PythonSourceFactory.__init__(self, name='manifestdestiny') - - # run the tests - self.addStep(ShellCommand(command=[WithProperties('%(python)s'), - 'test.py'], - workdir=WithProperties('%(virtualenv)s/src/ManifestDestiny/tests'), - description='test ManifestDestiny')) -