本文簡要介紹 python 語言中 numpy.testing.dec.setastest
的用法。
用法:
testing.dec.setastest(tf=True)
-
向鼻子發出信號,表明此函數是或不是測試。
- tf: bool
如果為 True,則指定修飾的可調用對象是一個測試。如果為 False,則指定修飾的可調用對象不是測試。默認為真。
參數:
注意:
這個裝飾器不能使用鼻子命名空間,因為它可以從非測試模塊中調用。另請參見
nose.tools
中的istest
和nottest
。例子:
setastest
可以通過以下方式使用:from numpy.testing import dec @dec.setastest(False) def func_with_test_in_name(arg1, arg2): pass
相關用法
- Python numpy dec.slow用法及代碼示例
- Python numpy delete用法及代碼示例
- Python numpy degrees用法及代碼示例
- Python numpy deprecate用法及代碼示例
- Python numpy deg2rad用法及代碼示例
- Python numpy dtype.isbuiltin用法及代碼示例
- Python numpy dtype.shape用法及代碼示例
- Python numpy dtype.ndim用法及代碼示例
- Python numpy dtype.alignment用法及代碼示例
- Python numpy diagonal用法及代碼示例
- Python numpy dtype用法及代碼示例
- Python numpy dtype.names用法及代碼示例
- Python numpy dtype.__class_getitem__用法及代碼示例
- Python numpy divmod用法及代碼示例
- Python numpy dtype.flags用法及代碼示例
- Python numpy diagflat用法及代碼示例
- Python numpy dtype.fields用法及代碼示例
- Python numpy dtype.subdtype用法及代碼示例
- Python numpy dtype.descr用法及代碼示例
- Python numpy datetime_as_string用法及代碼示例
- Python numpy divide用法及代碼示例
- Python numpy dtype.kind用法及代碼示例
- Python numpy dtype.metadata用法及代碼示例
- Python numpy diag用法及代碼示例
- Python numpy dsplit用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.testing.dec.setastest。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。