本文简要介绍 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”中的所有测试例程。
相关用法
- Python numpy testing.rundocs用法及代码示例
- Python numpy testing.assert_warns用法及代码示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代码示例
- Python numpy testing.assert_array_less用法及代码示例
- Python numpy testing.assert_raises用法及代码示例
- Python numpy testing.assert_almost_equal用法及代码示例
- Python numpy testing.assert_approx_equal用法及代码示例
- Python numpy testing.assert_allclose用法及代码示例
- Python numpy testing.decorators.slow用法及代码示例
- Python numpy testing.suppress_warnings用法及代码示例
- Python numpy testing.assert_string_equal用法及代码示例
- Python numpy testing.assert_array_max_ulp用法及代码示例
- Python numpy testing.assert_equal用法及代码示例
- Python numpy testing.assert_array_equal用法及代码示例
- Python numpy testing.assert_array_almost_equal用法及代码示例
- Python numpy testing.decorators.setastest用法及代码示例
- Python numpy tensordot用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy trace用法及代码示例
- Python numpy tri用法及代码示例
- Python numpy true_divide用法及代码示例
- Python numpy transpose用法及代码示例
- Python numpy tile用法及代码示例
- Python numpy tanh用法及代码示例
- Python numpy trapz用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.testing.run_module_suite。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。