用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。