annotate autobot/projects/logparser/__init__.py @ 2:a3374cdd116d

stub out more needed for python projects
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 06 Jan 2011 11:28:28 -0800
parents 8e14b6322cc7
children 98bc88ba2d56
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 from autobot.process.factory import VirtualenvFactory
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 class TestLogParserFactory(VirtualenvFactory):
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 """
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5 factory to test the Mozilla log parser:
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6 http://hg.mozilla.org/automation/logparser/
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7 """
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
8 def __init__(self):
2
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
9
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
10 # setup the environment
0
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11 VirtualenvFactory.__init__(self, name='logparser',
8e14b6322cc7 initial stub for ateam buildbot
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
12 hg_sources=['http://hg.mozilla.org/automation/logparser/'])
2
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
13
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
14 # install the python
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
15 # TODO: utilize PythonSourceFactory
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
16
a3374cdd116d stub out more needed for python projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
17 # run the tests