用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。