本文簡要介紹 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)
相關用法
- Python numpy testing.run_module_suite用法及代碼示例
- Python numpy testing.assert_warns用法及代碼示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代碼示例
- Python numpy testing.assert_array_less用法及代碼示例
- Python numpy testing.assert_raises用法及代碼示例
- Python numpy testing.assert_almost_equal用法及代碼示例
- Python numpy testing.assert_approx_equal用法及代碼示例
- Python numpy testing.assert_allclose用法及代碼示例
- Python numpy testing.decorators.slow用法及代碼示例
- Python numpy testing.suppress_warnings用法及代碼示例
- Python numpy testing.assert_string_equal用法及代碼示例
- Python numpy testing.assert_array_max_ulp用法及代碼示例
- Python numpy testing.assert_equal用法及代碼示例
- Python numpy testing.assert_array_equal用法及代碼示例
- Python numpy testing.assert_array_almost_equal用法及代碼示例
- Python numpy testing.decorators.setastest用法及代碼示例
- Python numpy tensordot用法及代碼示例
- Python numpy trim_zeros用法及代碼示例
- Python numpy trace用法及代碼示例
- Python numpy tri用法及代碼示例
- Python numpy true_divide用法及代碼示例
- Python numpy transpose用法及代碼示例
- Python numpy tile用法及代碼示例
- Python numpy tanh用法及代碼示例
- Python numpy trapz用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.testing.rundocs。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。