Package buildbot :: Package steps :: Module python_twisted :: Class TrialTestCaseCounter
[hide private]
[frames] | no frames]

Class TrialTestCaseCounter

source code

process.buildstep.LogObserver --+    
                                |    
process.buildstep.LogLineObserver --+
                                    |
                                   TrialTestCaseCounter

Instance Methods [hide private]
 
outLineReceived(self, line)
This will be called with complete stdout lines (not including the delimiter).
source code

Inherited from process.buildstep.LogLineObserver: __init__, errLineReceived, errReceived, outReceived, setMaxLineLength

Inherited from process.buildstep.LogObserver: __providedBy__, logChunk, setLog, setStep

Class Variables [hide private]
  _line_re = re.compile(r'^(?:Doctest: )?([\w\.]+) \.\.\. \[([^\...
  numTests = 0
  finished = False

Inherited from process.buildstep.LogObserver: __implemented__, __provides__

Method Details [hide private]

outLineReceived(self, line)

source code 

This will be called with complete stdout lines (not including the delimiter). Override this in your observer.

Overrides: process.buildstep.LogLineObserver.outLineReceived
(inherited documentation)

Class Variable Details [hide private]

_line_re

Value:
re.compile(r'^(?:Doctest: )?([\w\.]+) \.\.\. \[([^\]]+)\]$')