Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 556 Bytes

remove_pycs.rst

File metadata and controls

18 lines (11 loc) · 556 Bytes

RemovePYCs

This is a simple built-in step that will remove .pyc files from the workdir. This is useful in builds that update their source (and thus do not automatically delete .pyc files) but where some part of the build process is dynamically searching for Python modules. Notably, trial has a bad habit of finding old test modules.

from buildbot.plugins import steps

f.addStep(steps.RemovePYCs())