pytest 用例执行顺序

简介: pytest 用例执行顺序

默认执行顺序从上到下

import pytest
def test1():
    print('登录')
def test4():
    print('取件')
def test2():
    print('存件')
def test3():
    print('发短信')
if __name__ == '__main__':
    pytest.main(['-vs',r'D:\python新代码集\pytest_study\basics\test_execution_sequence.py'])

这里需要安装我上篇文章改用例执行顺序的插件

通过@pytest.mark.run(order=1)控制执行顺序

import pytest
'''
默认执行顺序从上到下
'''
@pytest.mark.run(order=1)
def test1():
    print('登录')
@pytest.mark.run(order=4)
def test4():
    print('取件')
@pytest.mark.run(order=2)
def test2():
    print('存件')
@pytest.mark.run(order=3)
def test3():
    print('发短信')
if __name__ == '__main__':
    pytest.main(['-vs',r'D:\python新代码集\pytest_study\basics\test_execution_sequence.py'])

相关文章
|
7月前
|
测试技术
Pytest参数化用例
`Pytest`的参数化功能用于通过参数生成和执行多个测试用例。使用`@pytest.mark.parametrize`装饰器,可传入不同数据,如单参数或多个参数,并可设置`ids`为用例命名。例如,一个搜索功能测试会根据提供的关键词列表动态生成用例。另外,通过创建`conftest.py`文件并定义函数,可以显示中文用例名称。同时,可以利用笛卡尔积实现更复杂的参数组合。
|
测试技术
30-pytest-重复执行用例-pytest-repeat
30-pytest-重复执行用例-pytest-repeat
30-pytest-重复执行用例-pytest-repeat
|
测试技术 Python
Pytest用例执行的先后顺序
Pytest用例执行的先后顺序
123 0
|
测试技术
15-pytest-自定义用例执行顺序
15-pytest-自定义用例执行顺序
|
测试技术
34-pytest-Hooks函数之获取用例执行结果
34-pytest-Hooks函数之获取用例执行结果
|
测试技术 Python
pytest学习和使用17-Pytest如何重复执行用例?(pytest-repeat)
pytest学习和使用17-Pytest如何重复执行用例?(pytest-repeat)
147 0
pytest学习和使用17-Pytest如何重复执行用例?(pytest-repeat)
|
测试技术 Python
pytest学习和使用10-Pytest中的测试用例如何跳过执行?
pytest学习和使用10-Pytest中的测试用例如何跳过执行?
105 0
pytest学习和使用10-Pytest中的测试用例如何跳过执行?
|
测试技术 Python
pytest学习和使用2-初步使用和用例运行
pytest学习和使用2-初步使用和用例运行
99 0
pytest学习和使用2-初步使用和用例运行
pytest学习和使用19-pytest断言失败后,怎样保持后续的断言继续执行?(pytest-assume)
pytest学习和使用19-pytest断言失败后,怎样保持后续的断言继续执行?(pytest-assume)
134 0
|
测试技术
pytest学习和使用14-Pytest用例执行结果有哪几种状态?
pytest学习和使用14-Pytest用例执行结果有哪几种状态?
92 0
下一篇
DataWorks