原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.testing.decorators.slow.html
校对:(虚位以待)
numpy.testing.decorators.
slow
(t)[source]将测试标记为“慢”。
慢速测试的确切定义显然是主观的和硬件相关的,但是一般来说,任何需要超过一秒或两秒的单独测试应该被标记为慢(整个套件包含数千个测试,所以即使一秒钟重大)。
参数: | t:callable
|
---|---|
返回: | t:callable
|
例子
numpy.testing
模块包括导入 装饰 为 dec t2>。测试可以装饰成慢如下:
from numpy.testing import *
@dec.slow
def test_big(self):
print('Big, slow test')