~ubuntu-branches/ubuntu/trusty/buildbot/trusty-proposed

« back to all changes in this revision

Viewing changes to buildbot/test/util/sourcesteps.py

  • Committer: Package Import Robot
  • Author(s): Andriy Senkovych
  • Date: 2013-10-10 13:22:47 UTC
  • mfrom: (1.2.10)
  • Revision ID: package-import@ubuntu.com-20131010132247-m622rpa3yemt62te
Tags: 0.8.8-1
* New upstream release
* Remove text-client.patch (applied upstream)
* Add bash-completion. Thanks to Elmir Jagudin
* debian/control: add Vcs-* fields

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
import mock
17
17
from buildbot.test.util import steps
18
18
 
 
19
import os
19
20
 
20
21
class SourceStepMixin(steps.BuildStepMixin):
21
22
    """
54
55
        ss.patch = patch
55
56
        ss.patch_info = None
56
57
        ss.changes = []
57
 
 
 
58
        self.build.path_module = os.path
58
59
        self.build.getSourceStamp = lambda x=None: ss
59
60
        return step
60
61