| Trees | Indices | Help | 
        
  | 
  
|---|
| 
       | 
  
twisted.persisted.styles.Versioned --+
                                     |
                                    BuildStepStatus
I represent a collection of output status for a buildbot.process.step.BuildStep.
Statistics contain any information gleaned from a step that is not in the form of a logfile. As an example, steps that run tests might gather statistics about the number of passed, failed, or skipped tests.
| Instance Methods | |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
| tuple of int, list of strings | 
      
  | 
  ||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
| 
     Inherited from   | 
  |||
| Class Variables | |
        __implemented__ = <implementedBy buildbot.status.buildstep.Bui
     | 
  |
        finished = Nonehash(x)  | 
  |
        finishedWatchers = 
     | 
  |
        persistenceForgets = 
     | 
  |
        persistenceVersion = 3
     | 
  |
| buildbot.status.progress.StepProgress | 
        progress = Nonetracks ETA for the step  | 
  
        results = Nonehash(x)  | 
  |
        started = Nonehash(x)  | 
  |
        step_number = Nonehash(x)  | 
  |
| list of strings | 
        text = list of short texts that describe the command and its status  | 
  
| list of strings | 
        text2 = list of short texts added to the overall build description  | 
  
        updates = 
     | 
  |
        watchers = 
     | 
  |
| Instance Variables | |
| dict of string -> buildbot.status.logfile.LogFile | 
        logs logs of steps  | 
  
| dict | 
        statistics = results from running this step  | 
  
| Method Details | 
  
 Get state, adding a version number to it on its way out. 
  | 
  
 Special descriptor for class __provides__ The descriptor caches the implementedBy info, so that we can get declarations for objects without instance-specific interfaces a bit quicker. For example: >>> from zope.interface import Interface >>> class IFooFactory(Interface): ... pass >>> class IFoo(Interface): ... pass >>> class C(object): ... implements(IFoo) ... classProvides(IFooFactory) >>> [i.getName() for i in C.__provides__] ['IFooFactory'] >>> [i.getName() for i in C().__provides__] ['IFoo'] 
  | 
  
 
  | 
  
 Returns a short string with the name of this step. This string may have spaces in it.  | 
  
 Return a tuple describing the results of the step. 'result' is one of the constants in buildbot.status.builder: SUCCESS, WARNINGS, FAILURE, or SKIPPED. 'strings' is an optional list of strings that the step wants to append to the overall build's results. These strings are usually more terse than the ones returned by getText(): in particular, successful Steps do not usually contribute any text to the overall build. 
  | 
  
 Returns a list of strings which describe the step. These are intended to be displayed in a narrow column. If more space is available, the caller should join them together with spaces before presenting them to the user.  | 
  
 Set the given statistic. Usually called by subclasses.  | 
| Class Variable Details | 
  __implemented__
  | 
| Trees | Indices | Help | 
        
  | 
  
|---|
| Generated by Epydoc 3.0.1 on Sun Jul 17 13:45:27 2011 | http://epydoc.sourceforge.net |