pytest函数设置通过状态

时间:2019-02-28 13:15:16

标签: pytest

pytest中是否有与pytest.skippytest.fail这样的成功状态等效的功能?

场景:

def subf()_:
 ...  
 if p=="OK": pytest.pass???();

def test_AA001():
  ...   
  subf(p)
  a = 1
  assert a==0, "Oh noh"

(我不想将变量返回到test_AA001)

Rr

0 个答案:

没有答案