Package buildbot :: Package status :: Module builder
[hide private]
[frames] | no frames]

Module builder

source code

Classes [hide private]
  LogFileScanner
  LogFileProducer
What's the plan?
  LogFile
A LogFile keeps all of its contents on disk, in a non-pickle format to which new entries can easily be appended.
  HTMLLogFile
  Event
  TestResult
  BuildSetStatus
  BuildRequestStatus
  BuildStepStatus
I represent a collection of output status for a buildbot.process.step.BuildStep.
  BuildStatus
  BuilderStatus
I handle status information for a single process.base.Builder object.
  SlaveStatus
  Status
I represent the status of the buildmaster.
Functions [hide private]
 
_tryremove(filename, timeout, retries)
Try to remove a file, and if failed, try again in timeout.
source code
Variables [hide private]
  Results = ['success', 'warnings', 'failure', 'skipped', 'excep...
  STDOUT = 0
  STDERR = 1
  HEADER = 2
  ChunkTypes = ['stdout', 'stderr', 'header']
  EXCEPTION = 4
  FAILURE = 2
  SKIPPED = 3
  SUCCESS = 0
  WARNINGS = 1
  __package__ = 'buildbot.status'
Function Details [hide private]

_tryremove(filename, timeout, retries)

source code 

Try to remove a file, and if failed, try again in timeout. Increases the timeout by a factor of 4, and only keeps trying for another retries-amount of times.


Variables Details [hide private]

Results

Value:
['success', 'warnings', 'failure', 'skipped', 'exception']