本文主要是介绍pytest的测试标记marks,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
引用打标的marks文档
Python的pytest框架(5)--测试标记(Markers)_pytest执行指定的marker-CSDN博客
https://www.cnblogs.com/pipile/p/12696226.html
给用例自定义打标签的代码示例
#coding:utf-8
import pytest
@pytest.mark.smoke
def test_1():print("smoke的测试用例被执行")
@pytest.mark.regression
def test_2():print("regression的测试用例被执行")
pytest.ini
[pytest]
markers =smoke:"冒烟用例"regression:"回归用例"
这篇关于pytest的测试标记marks的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!