numpy.testing.rundocs#

testing.rundocs(filename=None, raise_on_error=True)[source]#

运行在给定文件中找到的 doctests。

默认情况下,rundocs 在失败时引发 AssertionError。

参数:
filenamestr

运行 doctests 的文件的路径。

raise_on_errorbool

doctest 失败时是否引发 AssertionError。默认为 True。

备注

用户/开发者可以通过向 test() 调用添加 doctests 参数来运行 doctests。例如,要运行 numpy.lib 的所有测试(包括 doctests)

>>> np.lib.test(doctests=True)