本文整理汇总了Python中nose.config.Config.getParser方法的典型用法代码示例。如果您正苦于以下问题:Python Config.getParser方法的具体用法?Python Config.getParser怎么用?Python Config.getParser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nose.config.Config
的用法示例。
在下文中一共展示了Config.getParser方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: autohelp_directive
# 需要导入模块: from nose.config import Config [as 别名]
# 或者: from nose.config.Config import getParser [as 别名]
def autohelp_directive(dirname, arguments, options, content, lineno,
content_offset, block_text, state, state_machine):
"""produces rst from nose help"""
config = Config(parserClass=OptBucket,
plugins=BuiltinPluginManager())
parser = config.getParser(TestProgram.usage())
rst = ViewList()
for line in parser.format_help().split('\n'):
rst.append(line, '<autodoc>')
rst.append('Options', '<autodoc>')
rst.append('-------', '<autodoc>')
rst.append('', '<autodoc>')
for opt in parser:
rst.append(opt.options(), '<autodoc>')
rst.append(' \n', '<autodoc>')
rst.append(' ' + opt.help + '\n', '<autodoc>')
rst.append('\n', '<autodoc>')
node = nodes.section()
node.document = state.document
surrounding_title_styles = state.memo.title_styles
surrounding_section_level = state.memo.section_level
state.memo.title_styles = []
state.memo.section_level = 0
state.nested_parse(rst, 0, node, match_titles=1)
state.memo.title_styles = surrounding_title_styles
state.memo.section_level = surrounding_section_level
return node.children
示例2: nose_has_option
# 需要导入模块: from nose.config import Config [as 别名]
# 或者: from nose.config.Config import getParser [as 别名]
def nose_has_option(self, optname):
from nose.config import Config
optname = '--' + optname
nose_config = Config()
parser = nose_config.getParser()
return parser.get_option(optname) is not None