pytest之mark的使用
使用方法: 1、注册标签名 2、在测试用例/测试类前面加上:@pytest.mark.标签名 打标记范围:测试用例、测试类、模块文件 注册方式: 1、单个标签: 在conftest.py添加如下代码: def pytest_configure(config): # demo是标签名 config.addinivalue_line( " markers " , " demo:示例运行 " ) 2、多个标签: 在conftest.py添加如下代码: def pytest_configure(config): marker_list = [ " testdemo " , " demo " , " smoke " ] # 标签名集合 for markers in marker_list: config.addinivalue_line( " markers " , markers) 3、添加pytest.ini 配置文件(在你项目的任意一个文件下,新建一个file,文件命名为pytest.ini) [pytest] markers = smoke:this is a smoke tag demo:demo testdemo:testdemo 使用方法: import pytest @pytest.mark.testdemo def test_demo01(): print ( "