测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Pytest----失败N次后停止执行
收藏本文
作者:redrose2100 类别: 日期:2022-05-14 14:12:57 阅读:813 次 消耗积分:0 分
[TOC] ### 1 默认情况下,所有用例都会执行完成 测试脚本代码如下: ```python def test_1(): print("in test_1") assert 1==1 def test_2(): print("in test_2") assert 1==2 def test_3(): print("in test_3") assert 1==1 def test_4(): print("in test_4") assert 1==2 ``` 使用pytest 命令执行结果如下:即,四个用例全部执行 ```python G:\redrose2100\src\demo>pytest ========================================================================== test session starts =========================================================================== platform win32 -- Python 3.9.5, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: G:\redrose2100\src\demo plugins: rerunfailures-10.0 collected 4 items test_example.py .F.F [100%] ================================================================================ FAILURES ================================================================================ _________________________________________________________________________________ test_2 _________________________________________________________________________________ def test_2(): print("in test_2") > assert 1==2 E assert 1 == 2 test_example.py:8: AssertionError -------------------------------------------------------------------------- Captured stdout call -------------------------------------------------------------------------- in test_2 _________________________________________________________________________________ test_4 _________________________________________________________________________________ def test_4(): print("in test_4") > assert 1==2 E assert 1 == 2 test_example.py:16: AssertionError -------------------------------------------------------------------------- Captured stdout call -------------------------------------------------------------------------- in test_4 ======================================================================== short test summary info ========================================================================= FAILED test_example.py::test_2 - assert 1 == 2 FAILED test_example.py::test_4 - assert 1 == 2 ====================================================================== 2 failed, 2 passed in 0.13s ======================================================================= G:\redrose2100\src\demo> ``` * 当希望在有用例失败的情况下,即停止执行后续其他用例,使用 pytest -x即可 如下,使用 pytest -x 执行的结果,即执行到第二个用例是断言错误,因此停止不在执行后续的两个用例 ```python G:\redrose2100\src\demo>pytest -x ========================================================================== test session starts =========================================================================== platform win32 -- Python 3.9.5, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: G:\redrose2100\src\demo plugins: rerunfailures-10.0 collected 4 items test_example.py .F ================================================================================ FAILURES ================================================================================ _________________________________________________________________________________ test_2 _________________________________________________________________________________ def test_2(): print("in test_2") > assert 1==2 E assert 1 == 2 test_example.py:8: AssertionError -------------------------------------------------------------------------- Captured stdout call -------------------------------------------------------------------------- in test_2 ======================================================================== short test summary info ========================================================================= FAILED test_example.py::test_2 - assert 1 == 2 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ====================================================================== 1 failed, 1 passed in 0.12s ======================================================================= G:\redrose2100\src\demo> ``` ### 2 通过 pytest --maxfail 可以控制做多失败几次,即停止运行 用例内容再增加两个,如下: ```python def test_1(): print("in test_1") assert 1==1 def test_2(): print("in test_2") assert 1==2 def test_3(): print("in test_3") assert 1==1 def test_4(): print("in test_4") assert 1==2 def test_5(): print("in test_5") assert 1==1 def test_6(): print("in test_4") assert 1==2 ``` 使用 pytest --maxfail 2 即最多遇到两次失败用例,则停止执行后面其他用例,此场景主要用于比如当环境等因素出现异常时,可以设置比如正常情况下几乎所有用例均没有问题,但是当出现比如N次用例失败时,基本可以说明当前环境有问题了,此种情景下,此参数就很有用了 ```python G:\redrose2100\src\demo>pytest --maxfail 2 ========================================================================== test session starts =========================================================================== platform win32 -- Python 3.9.5, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: G:\redrose2100\src\demo plugins: rerunfailures-10.0 collected 6 items test_example.py .F.F ================================================================================ FAILURES ================================================================================ _________________________________________________________________________________ test_2 _________________________________________________________________________________ def test_2(): print("in test_2") > assert 1==2 E assert 1 == 2 test_example.py:8: AssertionError -------------------------------------------------------------------------- Captured stdout call -------------------------------------------------------------------------- in test_2 _________________________________________________________________________________ test_4 _________________________________________________________________________________ def test_4(): print("in test_4") > assert 1==2 E assert 1 == 2 test_example.py:16: AssertionError -------------------------------------------------------------------------- Captured stdout call -------------------------------------------------------------------------- in test_4 ======================================================================== short test summary info ========================================================================= FAILED test_example.py::test_2 - assert 1 == 2 FAILED test_example.py::test_4 - assert 1 == 2 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 2 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ====================================================================== 2 failed, 2 passed in 0.14s ======================================================================= G:\redrose2100\src\demo> ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/201
上一篇:
Pytest----多进程并行执行自动化测试脚本
下一篇:
Pytest----Windows10系统如何安装配置allure工具
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件