其他分享
首页 > 其他分享> > pytest - 打标记:mark功能

pytest - 打标记:mark功能

作者:互联网

对用例打标记,运行的时候,只运行打标记的用例。如冒烟测试

 

打标记步骤

1.先注册标记名

    在配置文件:pytest.ini 注册标记名,注意必须是这个文件名

  标签名加冒号后面可以写说明,必须是英文

   

 

 

2.给测试用例或测试类打标记

  @pytest.mark.已注册的标记名

  

 

 

3.运行时设置需要运行的标记名

  main文件 pytest命令行:-m, 标记名

pytest.main(["-s","-v",
"-m","smoke", # -m是打标记命令,smoke是标记名
"--alluredir=allure_dir"])

需要运行多个不同标记的用例时,如下

pytest.main(["-s","-v",
"-m","smoke or demo",
"--alluredir=allure_dir"])

 指定标记名不被运行时:

pytest.main(["-s","-v",
"-m","not smoke",
"--alluredir=allure_dir"])

 

标签:标记,--,mark,pytest,alluredir,smoke,main
来源: https://www.cnblogs.com/sue2015/p/14760797.html