热门标签
更多>
搜索结果
查询Tags标签: calc2,共有 2条记录-
Python自动化之pytest常用插件
1、失败重跑 pytest-rerunfailures安装:pip install pytest-rerunfailures使用:pytest test_class.py --reruns 5 --reruns-delay 1 -vs (失败后重新运行5次,每次间隔1秒)@pytest.mark.flaky(reruns = 5 ,reruns-delay = 1 ) 指定某个用例#!/usr/bin/python # -*- …
2021/7/18 17:06:45 人评论 次浏览 -
Python自动化之pytest常用插件
1、失败重跑 pytest-rerunfailures安装:pip install pytest-rerunfailures使用:pytest test_class.py --reruns 5 --reruns-delay 1 -vs (失败后重新运行5次,每次间隔1秒)@pytest.mark.flaky(reruns = 5 ,reruns-delay = 1 ) 指定某个用例#!/usr/bin/python # -*- …
2021/7/18 17:06:45 人评论 次浏览