On Wed, Jun 27, 2012 at 1:33 PM, Sebastien Douche <sdouche@gmail.com> wrote:
On Wed, Jun 27, 2012 at 3:00 AM, Zope tests summarizer <noreply@zope.org> wrote:
This is the summary for test reports received on the zope-tests list between 2012-06-25 00:00:00 UTC and 2012-06-26 00:00:00 UTC:
Exception raised on all Buildbots at the end of the tests and I don't know why:
I removed some lines and it's now ok: http://buildbot.afpy.org/ztk1.0/waterfall http://buildbot.afpy.org/ztk1.0dev/waterfall http://buildbot.afpy.org/ztk1.1/waterfall http://buildbot.afpy.org/ztk1.1dev/waterfall # def start(self): # shell.Test.start(self) # self.started = time.time() # reactor.callLater(self.tick_every, self.tick) # def finished(self, results): # if not self.stopped: # self.stopped = time.time() # shell.Test.finished(self, results) # def tick(self): # if not self.stopped: # self.step_status.setText(self.describe(False)) # reactor.callLater(self.tick_every, self.tick) # def describe(self, done=False): # description = [self.name] # if not done and self.started: # running = time.time() - self.started # description = [self.name, self.formatTime(running)] # return description def createSummary(self, log): # if not self.started: # # just in case something async happens # self.started = time.time() # self.stopped = time.time() log_text = log.getText() totals = self.extractTotals(log_text) if totals: self.descriptionDone = self.descriptionDone + [totals] # the test runner lies about the time ## time_info = self.extractTime(log_text) # time_info = self.formatTime(self.stopped - self.started) # if time_info: # self.descriptionDone = self.descriptionDone + [time_info] -- Sebastien Douche <sdouche@gmail.com> Twitter: @sdouche / G+: +sdouche