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)