本文整理汇总了Python中trapdoor.TrapdoorProgram.prepare方法的典型用法代码示例。如果您正苦于以下问题:Python TrapdoorProgram.prepare方法的具体用法?Python TrapdoorProgram.prepare怎么用?Python TrapdoorProgram.prepare使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类trapdoor.TrapdoorProgram
的用法示例。
在下文中一共展示了TrapdoorProgram.prepare方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: prepare
# 需要导入模块: from trapdoor import TrapdoorProgram [as 别名]
# 或者: from trapdoor.TrapdoorProgram import prepare [as 别名]
def prepare(self):
"""Make some preparations in feature branch for running pylint.
This includes a copy of tools/qa/pylintrc to QAWORKDIR.
"""
TrapdoorProgram.prepare(self)
shutil.copy('tools/qa/pylintrc', self.rcfile)
示例2: prepare
# 需要导入模块: from trapdoor import TrapdoorProgram [as 别名]
# 或者: from trapdoor.TrapdoorProgram import prepare [as 别名]
def prepare(self):
"""Make some preparations in feature branch for running doxygen.
This includes a copy of doc/doxygen.conf to QAWORKDIR.
"""
TrapdoorProgram.prepare(self)
shutil.copy('doc/doxygen.conf', self.doxyconf_file)
示例3: prepare
# 需要导入模块: from trapdoor import TrapdoorProgram [as 别名]
# 或者: from trapdoor.TrapdoorProgram import prepare [as 别名]
def prepare(self):
"""Make some preparations in feature branch for running pycodestyle.
This includes a copy of tools/qa/pycodestyle to QAWORKDIR.
"""
TrapdoorProgram.prepare(self)
shutil.copy('tools/qa/%s' % os.path.basename(self.config_file), self.config_file)
示例4: prepare
# 需要导入模块: from trapdoor import TrapdoorProgram [as 别名]
# 或者: from trapdoor.TrapdoorProgram import prepare [as 别名]
def prepare(self):
"""Make some preparations in feature branch for running pep8.
This includes a copy of tools/qa/pep8 to QAWORKDIR.
"""
TrapdoorProgram.prepare(self)
shutil.copy('tools/qa/pep8', self.config_file)
示例5: prepare
# 需要导入模块: from trapdoor import TrapdoorProgram [as 别名]
# 或者: from trapdoor.TrapdoorProgram import prepare [as 别名]
def prepare(self):
"""Make some preparations in feature branch for running cpplint.py.
This includes a copy of cpplint.py to QAWORKDIR.
"""
TrapdoorProgram.prepare(self)
shutil.copy('tools/qa/cpplint.py', self.cpplint_file)
os.chmod(self.cpplint_file, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)