# HG changeset patch # User Jeff Hammel # Date 1343769640 25200 # Node ID 22bb1ac50eb729eafcde983867bbfa146a2da857 # Parent b19992f78f5cf1d62c3815813b0c250f05a4e15d remove obselete project diff -r b19992f78f5c -r 22bb1ac50eb7 README.txt --- 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 diff -r b19992f78f5c -r 22bb1ac50eb7 autobot/projects/manifestdestiny/__init__.py --- 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')) -