本文整理汇总了Python中doctest.FAIL_FAST属性的典型用法代码示例。如果您正苦于以下问题:Python doctest.FAIL_FAST属性的具体用法?Python doctest.FAIL_FAST怎么用?Python doctest.FAIL_FAST使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类doctest
的用法示例。
在下文中一共展示了doctest.FAIL_FAST属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import doctest [as 别名]
# 或者: from doctest import FAIL_FAST [as 别名]
def __init__(self, args, assignment):
super().__init__(args, assignment)
# The environment in which the doctests are run (global vars)
self.good_env = {}
self.verb = self.args.verbose
# Initialize the doctest module objects that will do the testing/parse
self.parser = DocTestParser()
self.runner = DocTestRunner(verbose=self.verb, checker=DebugOutputChecker(), optionflags=FAIL_FAST)
self.lines_exec = 0
self.lines_total = 0