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