本文简要介绍 python 语言中 numpy.testing.rundocs
的用法。
用法:
testing.rundocs(filename=None, raise_on_error=True)
运行在给定文件中找到的 doctests。
默认情况下,
rundocs
在失败时引发 AssertionError。- filename: str
运行 doctest 的文件的路径。
- raise_on_error: bool
doctest 失败时是否引发AssertionError。默认为真。
参数:
注意:
用户/开发人员可以通过将
doctests
参数添加到test()
调用来运行文档测试。例如,要运行numpy.lib
的所有测试(包括文档测试):>>> np.lib.test(doctests=True)
相关用法
- Python numpy testing.run_module_suite用法及代码示例
- 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.rundocs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。