用法:
numpy.testing.decorators.setastest(tf=True)
向鼻子發出信號,此函數是測試還是不是測試。
參數: - tf: : bool
如果為True,則指定修飾的可調用對象為測試。如果為False,則指定修飾的可調用對象不是測試。默認值為True。
注意:
該裝飾器不能使用鼻子命名空間,因為可以從非測試模塊中調用它。也可以看看
istest
和nottest
在nose.tools
。例子:
setastest
可以通過以下方式使用:from numpy.testing import dec @dec.setastest(False) def func_with_test_in_name(arg1, arg2): pass
源碼:
numpy.testing.decorators.setastest的API實現見:[源代碼]
注:本文由純淨天空篩選整理自 numpy.testing.decorators.setastest。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。