Package buildbot :: Package steps :: Module python_twisted :: Class RemovePYCs
[frames] | no frames]

Class RemovePYCs

source code

process.properties.PropertiesMixin --+            
                                     |            
           process.buildstep.BuildStep --+        
                                         |        
        process.buildstep.LoggingBuildStep --+    
                                             |    
                            shell.ShellCommand --+
                                                 |
                                                RemovePYCs

Instance Methods

Inherited from shell.ShellCommand: __init__, buildCommandKwargs, describe, getWorkdir, setBuild, setCommand, setDefaultWorkdir, setStepStatus, setupEnvironment, start

Inherited from process.buildstep.LoggingBuildStep: addLogFile, checkDisconnect, commandComplete, createSummary, evaluateCommand, getText, getText2, interrupt, maybeGetText2, setStatus, setupLogfiles, startCommand

Inherited from process.buildstep.BuildStep: __provides__, acquireLocks, addCompleteLog, addFactoryArguments, addHTMLLog, addLog, addLogObserver, addURL, failed, finished, getLog, getSlaveName, getStepFactory, releaseLocks, runCommand, setBuildSlave, setProgress, setupProgress, slaveVersion, slaveVersionIsOlderThan, startStep

Inherited from process.properties.PropertiesMixin: __providedBy__, getProperties, getProperty, hasProperty, has_key, render, setProperty

Class Variables
  name = 'remove-.pyc'
  command = ['find', '.', '-name', '*.pyc', '-exec', 'rm', '{}',...
a list of renderable objects (typically strings or WithProperties instances).
  description = ['removing', '.pyc', 'files']
  descriptionDone = ['remove', '.pycs']

Inherited from shell.ShellCommand: flunkOnFailure, renderables

Inherited from process.buildstep.LoggingBuildStep: cmd, parms, progressMetrics

Inherited from process.buildstep.BuildStep: __implemented__, alwaysRun, build, doStepIf, flunkOnWarnings, haltOnFailure, hideStepIf, locks, progress, set_runtime_properties, step_status, useProgress, warnOnFailure, warnOnWarnings

Instance Variables

Inherited from shell.ShellCommand: lazylogfiles, logfiles

Class Variable Details

command

a list of renderable objects (typically strings or WithProperties instances). This will be used by start() to create a RemoteShellCommand instance.
Value:
['find', '.', '-name', '*.pyc', '-exec', 'rm', '{}', ';']