Pytest Hooks方法之pytest_collection_modifyitems改变测试用例执行顺序

         pytest默认执行用例顺序是根据项目下文件名称按ascii码去收集运行的,文件里的用例是从上往下按顺序执行的.
pytest_collection_modifyitems 这个函数顾名思义就是收集测试用例、改变用例的执行顺序的。

一、pytest_collection_modifyitems 是测试用例收集完成后,可以改变测试用例集合(items)的顺序,items是用例对象的一个列表,改变items里面用例的顺序就可以改变用例的执行顺序了。源码如下:

def pytest_collection_modifyitems(session, config,items):'''called after collection is completed. you can modify the ``items`` list:param _pytest.main.Session session: the pytest session object:param _pytest.config.Config config: pytest config object:param List[_pytest.nodes.Item] items: list of item objects'''

二、pytest执行全部文件,默认执行顺序

conftest.pyimport pytest
def pytest_collection_modifyitems(session, items):print("收集的测试用例:%s"%items)
test_02.pyimport pytestclass Test(object):def test_three_03(self):"""用例描述"""print("用例3——橙子")def test_four_04(self):"""用例描述"""print("用例4——橙子")if __name__ == '__main__':pytest.main(['-s', ''])
test_C_01.pyimport pytestclass Test(object):def test_two_02(self):"""用例描述"""print("用例2——橙子")def test_one_01(self):"""用例描述"""print("用例1——橙子")if __name__ == '__main__':pytest.main(['-s', ''])

在test_02.py或test_C_01.py里执行,结果如下,可以看出pytest默认执行顺序是文件按照ascii码去收集运行的,文件里的用例是按从上到下顺序执行的

"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test_C_01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0, rerunfailures-8.0
收集的测试用例:[<Function test_three_03>, <Function test_four_04>, <Function test_two_02>, <Function test_one_01>]
collected 4 itemstest_02.py 用例3——橙子
.用例4——橙子
.
test_C_01.py 用例2——橙子
.用例1——橙子
.============================== 4 passed in 0.80s ==============================Process finished with exit code 0

三、pytest执行部分文件,指定文件执行顺序

conftest.pyimport pytest
def pytest_collection_modifyitems(session, items):print("收集的测试用例:%s"%items)
test_02.py#!/usr/bin/env python
# _*_coding:utf-8_*_
import pytestclass Test(object):def test_three_03(self):"""用例描述"""print("用例3——橙子")def test_four_04(self):"""用例描述"""print("用例4——橙子")if __name__ == '__main__':pytest.main(['-s', 'test_C_01.py','test_02.py'])
test_C_01.py#!/usr/bin/env python
# _*_coding:utf-8_*_import pytestclass Test(object):def test_two_02(self):"""用例描述"""print("用例2——橙子")def test_one_01(self):"""用例描述"""print("用例1——橙子")if __name__ == '__main__':pytest.main(['-s', 'test_C_01.py','test_02.py'])

在test_02.py或test_C_01.py里执行了文件pytest.main(['-s', 'test_C_01.py','test_02.py']),结果如下,可以看出pytest指定部分文件执行时,文件执行顺序是按指定顺序执行的,文件里用例是按从上到下顺序执行的。

"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test_C_01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0, rerunfailures-8.0
收集的测试用例:[<Function test_two_02>, <Function test_one_01>, <Function test_three_03>, <Function test_four_04>]
collected 4 itemstest_C_01.py 用例2——橙子
.用例1——橙子
.
test_02.py 用例3——橙子
.用例4——橙子
.============================== 4 passed in 0.11s ==============================Process finished with exit code 0

四、按照文件里用例名称ascii码排序(升序或降序)

conftest.pyimport pytest
def pytest_collection_modifyitems(session, items):print("收集的测试用例:%s" % items)items.sort(key=lambda x: x.name)print("排序后收集的测试用例:%s" % items)
test_02.py#!/usr/bin/env python
# _*_coding:utf-8_*_
import pytestclass Test(object):def test_c_03(self):"""用例描述"""print("用例3——橙子")def test_d_04(self):"""用例描述"""print("用例4——橙子")if __name__ == '__main__':pytest.main(['-s', ''])
test_C_01.py#!/usr/bin/env python
# _*_coding:utf-8_*_import pytestclass Test(object):def test_b_02(self):"""用例描述"""print("用例2——橙子")def test_a_01(self):"""用例描述"""print("用例1——橙子")if __name__ == '__main__':pytest.main(['-s', ''])

在test_02.py或test_C_01.py里执行了文件pytest.main(['-s', '']),结果如下,可以看出按照用例名升序执行了

"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test_C_01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0, rerunfailures-8.0
收集的测试用例:[<Function test_c_03>, <Function test_d_04>, <Function test_b_02>, <Function test_a_01>]
排序后收集的测试用例:[<Function test_a_01>, <Function test_b_02>, <Function test_c_03>, <Function test_d_04>]
collected 4 itemstest_C_01.py 用例1——橙子
.用例2——橙子
.
test_02.py 用例3——橙子
.用例4——橙子
.============================== 4 passed in 0.96s ==============================Process finished with exit code 0

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/568267.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MySQL 8.0开始Group by不再排序

如题所示&#xff0c;mysql 8.0 开始 group by 默认是没有排序的 那mysql 8.0 之前和 8.0 就有可能结果出现不同 需要警惕 查看版本信息 rootmysql3306.sock>[employees]>show variables like %version%; ------------------------------------------------------- | V…

Python操作Jira提交BUG

Jira提供了完善的RESTful API&#xff0c;如果不想直接请求API接口可以使用Python的Jira库来操作Jira jira Python文档https://jira.readthedocs.io/en/latest/ 安装&#xff1a;pip install jira 认证&#xff1a;Jira的访问是有权限的&#xff0c;在访问Jira项目时首先要进…

mysql 导入导出大文件

mysql导入&#xff1a; load data local infile C:/Users/Administrator.USER-20190225BY/Desktop/test.csv into table test fields terminated by\t lines terminated by\n ignore 1 lines (xianlu,chepai,shijian,jing,wei) mysql导出&#xff1a; select * from mysql.te…

Pytest之pytest.assume用例中断言1失败会继续执行后续代码断言2

一般我们做自动化测试时&#xff0c;一个用例会写多个断言&#xff0c;当第一个断言失败后&#xff0c;后面的代码就不会执行了&#xff0c;于是我们引进了pytest-assume插件可以解决断言失败后继续断言的问题。 一、安装依赖包 pip install pytest-assume 二、使用assert进…

Unable to round-trip http request to upstream错误

这几天打开浏览器经常出现Unable to round-trip http request to upstream。提示。 一直以为是网速的问题。今天百度才发现是因为打开了蓝灯。赶紧关掉蓝灯即可

Pytest之pytest-assume同用例多断言,断言1失败会执行后续代码及断言2

一般我们做自动化测试时&#xff0c;一个用例会写多个断言&#xff0c;当第一个断言失败后&#xff0c;后面的代码就不会执行了&#xff0c;于是我们引进了pytest-assume插件可以解决断言失败后继续断言的问题。一、安装依赖包pip install pytest-assume二、使用assert进行断言…

无法打开包括文件: “corecrt.h”: No such file or directory

刚开始安装qt&#xff0c;测试是否安装成功就出现此问题&#xff0c;让人很头大 参考&#xff1a;https://blog.csdn.net/x356982611/article/details/51140807的播客 编译时候使用的是最新的sdk版本10.0.10586.0版本但是它里面没有ucrt目录&#xff0c;问题找到了。 看了下v…

Pytest-ordering自定义用例执行顺序

我们一般在做自动化测试时&#xff0c;用例设计之间应该是可以相互独立执行的&#xff0c;没有一定的前后依赖关系的&#xff0c;如果我们真的有前后依赖&#xff0c;想指定用例的先后顺序&#xff0c;可以用到pytest-ordering插件解决这个问题 1、安装依赖包 pip install pyt…

LNK2019无法解析的外部符号 public: static struct cv::Ptr class cv::xfeatures2d::SURF问题解决

原因是lib文件没有引入 opencv_xfeatures2d320d.lib opencv_features2d320d.lib 在配置opencv时&#xff0c;应把D:\Program Files (x86)\opencv3\opencv\build\x64\vc14\lib下所有的lib文件都添加到链接器的输入中 也有可能是你下载的opencv库中没有这个lib&#xff0c;而你…

Pytest参数选项在脚本中和命令行用法详解

运行pytest可以指定目录和文件&#xff0c;如果不指定&#xff0c;pytest会搜索当前目录及其子目录中以test_开头或以_test结尾得测试函数。我们把pytest搜索测试文件和测试用例的过程称为测试搜索&#xff08;test discovery&#xff09;。只要遵循pytest的命名规则&#xff0…

Win7下OpenCV3.2.0+VS2015配置

参考自&#xff1a;https://blog.csdn.net/qq_22812319/article/details/78335880 一、预备知识 1、下载opencv时&#xff0c;opencv与vs版本是有固定关系的。 2、vs一般使用release版本。 3、首先在下载的openCV解压目录opencv/build/x64/下查看文件夹名&#xff0c;如下图…

Pytest标记预期失败得测试用例@pytest.mark.xfail()

pytest除了测试函数中使用这个方法pytest.xfail()外&#xff0c;xfail还有一种使用方法。就是pytest.mark.xfail()标记预期会失败的用例&#xff0c;即期望测试用例是失败的&#xff0c;但是不会影响测试用例的的执行。 标记的用例运行后&#xff0c;断言失败&#xff0c;所以…

win7 vs2015配置qt5.11

1、下载vs&#xff0c;和qt。 qt百度网盘下载链接&#xff1a;https://pan.baidu.com/s/12bUt31_mXGvgc3tdJRkkkw 提取码&#xff1a;2swk 下载完成之后&#xff0c;直接进行安装&#xff0c;下一步。 安装的时候要根据自己的VS版本选择相应的msvc&#xff08;VC运行库&…

LNK2019 无法解析的外部符号 __imp_CommandLineToArgvW,该符号在函数 WinMain 中被引用

在VS2017中新建Qt GUI 工程&#xff0c;无法编译&#xff0c;报链接错误 LNK2019 无法解析的外部符号 __imp_CommandLineToArgvW&#xff0c;该符号在函数 WinMain 中被引用 经比对&#xff0c;是lib配置问题。如歌在Qt Creator中创建工程然后再在VS2017中打开&#xff0c;则…

原创 | 开源AI测试专题、Jmeter测试专题

开源 AI 测试专题震惊&#xff01;AI成功落地自动化测试AI 软件测试工具 Mabl 快速概览AI测试工具 Mabl - 测试用例自动自愈Sauce Labs 的持续 UI 自动化测试云疫情中诞生的 AI 测试工具&#xff1a;ai-webdriverAI 测试又多新花招&#xff1f;ai-webdriver-1.0.1 独家更新一眼…

Qt 二级菜单无法输入中文

一、qt中二级菜单无法输入中文 解决办法&#xff1a;写到其他地方再粘贴复制过来即可ok 二、qt界面设置后&#xff0c;vs中没有反应 解决方法&#xff1a;在vs中寻找 ui_projectname.h projectname即为你的项目名&#xff0c;查看其中是否已有你qt中已经声明的控件&#x…

Python深层解析json数据之JsonPath

我们在做接口自动化时&#xff0c;一般接口响应的都是json数据体&#xff0c;对响应数据进行提取使用或断言&#xff0c;当数据量很大或层级很深时&#xff0c;就会变得很麻烦&#xff0c;于是就可以用到jsonpath模块&#xff0c;解决json路径深取值难的问题。一、 jsonpath介绍…

VS2015+qt5.11入门(实现计算机的加法和登录操作)

1、在vs中新建qt项目 2、打开Form Files中的.ui文件。即打开qt creator界面 3、在界面中添加两个label&#xff0c;两个LineEdit&#xff0c;一个计算按钮。点击保存 控件右击-->改变对象名称可以直接改变控件名。&#xff08;会映射显示在vs中的ui_projectname.h中&…

Python中map()函数用法

map() 是python的内置函数&#xff0c;会根据提供的函数对指定序列做映射。对可迭代函数*iterables中的每个元素应用func方法&#xff0c;将结果作为迭代器对象返回。注意&#xff1a;map()函数返回的是一个新的迭代器对象&#xff0c;不会改变原有对象 map()用法 class map(ob…

任务管理器只有概要信息解决办法

在任务管理器最顶端左击两下即可ok 参考自&#xff1a;https://wenda.so.com/q/1515482566217850