热门IT资讯网

使用pytest-dependency解决用例间的依赖问题

发表于:2024-11-23 作者:热门IT资讯网编辑
编辑最后更新 2024年11月23日,使用场景:测试B仅在测试A成功通过后方能有效进行。意思是:使用该插件可以标记一个test作为其他test的依赖,当依赖项执行失败时,那些依赖它的test将会被跳过。------------------

使用场景:测试B仅在测试A成功通过后方能有效进行。

意思是:使用该插件可以标记一个test作为其他test的依赖,当依赖项执行失败时,那些依赖它的test将会被跳过。

-------------------------------------------------------------上实例:----------------------------------------------------------------

安装:pytest-dependency

pip install pytest-dependency


使用:

import [email protected]()def test_01(test):    assert [email protected](depends=["test_01"])def test_02(test):    print("执行测试2")

看下结果:

test_01是test_02的依赖,故而test_01失败后,test_02被跳过


结论:

1、首先安装这个插件,

2、使用方法就是用 @pytest.mark.dependency()对所依赖的方法进行标记,使用@pytest.mark.dependency(depends=["test_name"])引用依赖。


0