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