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


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


本文简要介绍 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)

相关用法


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