numpy.testing.decorators.slow

numpy.testing.decorators.slow(t)[source]

将测试标记为“慢”。

慢速测试的确切定义显然是主观的和硬件相关的,但是一般来说,任何需要超过一秒或两秒的单独测试应该被标记为慢(整个套件包含数千个测试,所以即使一秒钟重大)。

参数:

t:callable

测试标记为慢。

返回:

t:callable

装饰测试t

例子

numpy.testing模块包括导入 装饰 dec t2>。测试可以装饰成慢如下:

from numpy.testing import *

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