當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。