numpy.testing.rundocs¶
-
numpy.testing.
rundocs
(filename=None, raise_on_error=True)[source]¶ 运行在给定文件中找到的doctests。
默认情况下,
rundocs
会在失败时引发AssertionError。参数: filename:str
运行doctests的文件的路径。
raise_on_error:bool
是否在doctest失败时引发AssertionError。默认值为True。
笔记
用户/开发人员可以通过向
test()
调用添加doctests
参数来运行doctests。例如,要运行numpy.lib
的所有测试(包括doctests):>>> np.lib.test(doctests=True)