diff -rN -u old-trunk/docs/buildbot.texinfo new-trunk/docs/buildbot.texinfo
|
old
|
new
|
|
| 4959 | 4959 | # this counter will feed Progress along the 'test cases' metric |
| 4960 | 4960 | counter = TrialTestCaseCounter() |
| 4961 | 4961 | self.addLogObserver('stdio', counter) |
| | 4962 | self.progressMetrics += ('tests',) |
| 4962 | 4963 | @end example |
| 4963 | 4964 | |
| 4964 | 4965 | This creates a TrialTestCaseCounter and tells the step that the |
| … |
… |
|
| 5012 | 5013 | def __init__(self, **kwargs): |
| 5013 | 5014 | ShellCommand.__init__(self, **kwargs) # always upcall! |
| 5014 | 5015 | counter = FNURRRGHCounter()) |
| 5015 | | self.addLogObserver(counter) |
| | 5016 | self.addLogObserver('stdio', counter) |
| | 5017 | self.progressMetrics += ('tests',) |
| 5016 | 5018 | # FINISH |
| 5017 | 5019 | @end example |
| 5018 | 5020 | |