Ejemplo n.º 1
0
 def begin_work_queue(self):
     AbstractQueue.begin_work_queue(self)
     # FIXME: We should find a better place to put this code so that we instantiate
     # a RIMBugzilla and MKSIntegrity instance with the dryrun paramater instead of
     # overridding the passed Bugzilla instance in self.tool.bugs.
     dryrun = self.tool.bugs.dryrun;
     self.tool.bugs = RIMBugzilla(dryrun=dryrun)
     self.mksintegrity = MKSIntegrity(dryrun=dryrun)
Ejemplo n.º 2
0
    def begin_work_queue(self):
        # FIXME: We provide a mock status server object since we aren't running a
        # status server like http://queues.webkit.org.
        self._tool.status_server = Mock();

        AbstractQueue.begin_work_queue(self)
        # FIXME: We should find a better place to put this code so that we instantiate
        # a RIMBugzilla and MKSIntegrity instance with the dryrun paramater instead of
        # overridding the passed Bugzilla instance in self._tool.bugs.
        dryrun = self._tool.bugs.dryrun;
        self._tool.bugs = RIMBugzilla(dryrun=dryrun)
        self.mksintegrity = MKSIntegrity(dryrun=dryrun)
Ejemplo n.º 3
0
 def begin_work_queue(self):
     AbstractQueue.begin_work_queue(self)
     self._sheriff = Sheriff(self._tool, self)
     self._irc_bot = SheriffIRCBot(self._tool, self._sheriff)
     self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
Ejemplo n.º 4
0
 def begin_work_queue(self):
     AbstractQueue.begin_work_queue(self)
     self._sheriff = Sheriff(self._tool, self)
     self._irc_bot = IRCBot("perfalizer", self._tool, self._sheriff, self._commands)
     self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
Ejemplo n.º 5
0
 def begin_work_queue(self):
     AbstractQueue.begin_work_queue(self)
     self._last_svn_revision = int(self._tool.scm().head_svn_revision())
     self._irc_bot = IRCBot('WKR', self._tool, None, self._commands)
     self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
Ejemplo n.º 6
0
 def begin_work_queue(self):
     AbstractQueue.begin_work_queue(self)
     self._last_svn_revision = int(self._tool.scm().head_svn_revision())
     self._irc_bot = IRCBot('WKR', self._tool, None, self._commands)
     self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
Ejemplo n.º 7
0
 def begin_work_queue(self):
     AbstractQueue.begin_work_queue(self)
     self._sheriff = Sheriff(self._tool, self)
     self._irc_bot = IRCBot("perfalizer", self._tool, self._sheriff,
                            self._commands)
     self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
Ejemplo n.º 8
0
 def __init__(self):
     AbstractQueue.__init__(self)
Ejemplo n.º 9
0
 def __init__(self):
     AbstractQueue.__init__(self)