Pytest -断言跳过及运行

Posted qastudy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytest -断言跳过及运行相关的知识,希望对你有一定的参考价值。

基本断言方法:

  技术图片技术图片

 

 

Pytest框架assert断言使用

  

• 断言:支持显示最常见的子表达式的值,包括调用,属性,比较以及二元和一元运算

符。
• 包含,相等,不等,大于 小于运算,assertnot 假

  • assert “h” in “hello”(判断h在hello中)

  • assert 3==4(判断3=4)

  • assert 3!=4(判断3!=4)

  • assert f() ==4 (判断f()方法返回值是否=4)

  • assert 5>6 (判断5>6为真)

  • assert not xx (判断xx不为真)

  • assert ‘0‘, ‘1‘, ‘3‘, ‘8‘ == ‘0‘, ‘3‘, ‘5‘, ‘8‘ 

以上是关于Pytest -断言跳过及运行的主要内容,如果未能解决你的问题,请参考以下文章

pytest文档7-pytest-html生成html报告

pytest---pytest.ini

pytest接口自动化测试框架 | pytest获取执行数据pytest禁用插件

pytest文档43-元数据使用(pytest-metadata)

Pytest权威教程24-Pytest导入机制及系统路径

pytest学习和使用20-pytest如何进行分布式测试?(pytest-xdist)