当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy testing.decorators.slow用法及代码示例


用法:

numpy.testing.decorators.slow(t)

将测试标记为‘slow’。

慢速测试的确切定义显然既是主观的又是hardware-dependent,但是通常任何需要一秒或两秒以上的测试都应标记为慢速(整个套件包含数千个测试,因此即使一秒也很重要) 。

参数:
t callable

将测试标记为缓慢。

返回值:
t 可召回的

装饰性测试t。

例子:

numpy.testing模块包括import decorators as dec。可以像这样缓慢地装饰测试:

from numpy.testing import *

@dec.slow
def test_big(self):
    print('Big, slow test')

源码:

numpy.testing.decorators.slow的API实现见:[源代码]


注:本文由纯净天空筛选整理自 numpy.testing.decorators.slow。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。