numpy.testing.rundocs#
- testing.rundocs(filename=None, raise_on_error=True)[源代码]#
运行在给定文件中找到的doctests.
默认情况下,`rundocs` 在失败时会引发一个 AssertionError.
- 参数:
- filenamestr
运行 doctests 的文件路径.
- raise_on_errorbool
当一个doctest失败时是否引发AssertionError.默认是True.
备注
用户/开发者可以通过在
test()
调用中添加doctests
参数来运行 doctests.例如,要为numpy.lib
运行所有测试(包括 doctests):>>> np.lib.test(doctests=True)