Pytest之自定义mark
Posted 软件测试自动化测试
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytest之自定义mark相关的知识,希望对你有一定的参考价值。
在上一篇Pytest系列文章:Pytest之skip、skipif、xfail,主要介绍pytest中skip
、skipif
、xfail
的用法。以下主要介绍pytest自定义配置及用例运行实战。
一个完整的项目,测试用例比较多,比如我们想将某些用例用来做冒烟测试,那该怎么办呢?pytest中可以自定义配置文件,用例按照指定的方式去运行。
一、配置文件
1、定义配置文件名
在项目根目录下,创建一个文件:pytest.ini
(固定名称,不要修改)。
2、配置文件格式
pytest.ini
[pytest]
markers =
demo: just for demo
smoke
① 案例一:
之前在讲解用例被标记为@pytest.mark.xfail
时,如果用例运行通过,显示XPASS。
test_demo.py
@pytest.mark.xfail()
def test_demo02():
print("这是test_demo02")
assert 1 == 1
在配置文件中未配置xfail_strict = True
时,运行结果如下:
在pytest.ini 中加上xfail_strict = True配置后
运行结果为:
② 案例二:addopts
addopts参数可以更改默认命令行选项,省去手动敲命令行参数。
比如命令行想输出详细信息、分布式执行或最大失败次数,每次敲命令很麻烦,在配置里设置,以后命令直接输入pytest即可。
现有如下用例:
test_demo.py
def test_demo01():
print("这是test_demo01")
assert 1 == 2
def test_demo02():
print("这是test_demo02")
如果需要输出信息更详细、输出调试信息及用例执行错误时立即退出,那么配置如下:
[pytest]
markers =
demo: just for demo
smoke
addopts = -v -s -x
命令行输入:pytest
输出结果为:
二、测试用例执行实战
比如我想从众多用例中挑选出部分用例,作为冒烟测试用例,怎么配置呢?
pytest.ini
[pytest]
markers =
demo: just for demo
smoke
其中smoke为标签,用例前加上标签名smoke,即都属于冒烟测试用例。
1、模块级别
在模块里加上标签,那么该模块下的类、方法或函数都会带上标签。
test_demo.py
import pytest
pytestmark = pytest.mark.smoke
class TestDemo:
def test_demo01(self):
print("这是test_demo01")
def test_demo02(self):
print("这是test_demo02")
def test_demo03(self):
print("这是test_demo03")
命令行输入:pytest -v -m smoke
。
输出结果为:
2、类级别
在类上添加标签,则类下的所有方法都带上标签
test_demo.py
import pytest
@pytest.mark.smoke
class TestDemo:
def test_demo01(self):
print("这是test_demo01")
def test_demo02(self):
print("这是test_demo02")
def test_demo03(self):
print("这是test_demo03")
def test_demo04():
print("这是test_demo04")
在命令行输入:pytest -v -m smoke test_demo.py
3、函数级别
在函数上添加标签,那么此函数带上标签。
test_demo.py
import pytest
class TestDemo:
def test_demo01(self):
print("这是test_demo01")
def test_demo02(self):
print("这是test_demo02")
def test_demo03(self):
print("这是test_demo03")
@pytest.mark.smoke
def test_demo04():
print("这是test_demo04")
命令行输入:pytest -v -m smoke test_demo.py
输出结果为:
感谢每一个认真阅读我文章的人,看着粉丝一路的上涨和关注,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:
① 2000多本软件测试电子书(主流和经典的书籍应该都有了)
② 软件测试/自动化测试标准库资料(最全中文版)
③ 项目源码(四五十个有趣且经典的练手项目及源码)
④ Python编程语言、API接口自动化测试、web自动化测试、App自动化测试(适合小白学习)
⑤ Python学习路线图(告别不入流的学习)
在我的QQ技术交流群里(技术交流和资源共享,广告进来腿给你打断)
可以自助拿走,群号953306497(备注“csdn111”)群里的免费资料都是笔者十多年测试生涯的精华。还有同行大神一起交流技术哦。
以上是关于Pytest之自定义mark的主要内容,如果未能解决你的问题,请参考以下文章