本文简要介绍 python 语言中 numpy.testing.dec.slow
的用法。
用法:
testing.dec.slow(t)
-
将测试标记为‘slow’。
慢速测试的确切定义显然是主观的和hardware-dependent,但通常任何需要超过一两秒的单独测试都应标记为慢速(整个套件由数千个测试组成,所以即使一秒钟也是重大)。
- t: 可调用的
标记为慢的测试。
- t: 可调用的
装饰测试 t。
参数:
返回:
例子:
numpy.testing
模块包括import decorators as dec
。测试可以像这样缓慢地装饰:from numpy.testing import * @dec.slow def test_big(self): print('Big, slow test')
相关用法
- Python numpy dec.setastest用法及代码示例
- 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.slow。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。