当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy testing.run_module_suite用法及代码示例


本文简要介绍 python 语言中 numpy.testing.run_module_suite 的用法。

用法:

testing.run_module_suite(file_to_run=None, argv=None)

运行测试模块。

相当于从命令行调用$ nosetests <argv> <file_to_run>

参数

file_to_run str,可选

测试模块的路径,或无。默认情况下,运行调用此函数的模块。

argv 字符串列表

要传递给鼻子测试运行者的参数。 argv[0] 被忽略。 nosetests 接受的所有命令行参数都将起作用。如果是默认值 None,则使用sys.argv。

例子

添加以下内容:

if __name__ == "__main__" :
    run_module_suite(argv=sys.argv)

在测试模块结束时,将在 python 解释器中调用该模块时运行测试。

或者,调用:

>>> run_module_suite(file_to_run="numpy/tests/test_matlib.py")

从解释器将运行“test_matlib.py”中的所有测试例程。

相关用法


注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.testing.run_module_suite。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。