码迷,mamicode.com
首页 > 其他好文 > 详细

标签不生效的处理方法:PytestUnknownMarkWarning: Unknown pytest.mark.wallet - is this a typo?...

时间:2020-01-20 14:47:39      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:写代码   configure   nbsp   walle   技术   width   pre   多个   签名   

今天在写代码的过程中遇到了这样一个warning:PytestUnknownMarkWarning: Unknown pytest.mark.test - is this a typo? 

技术图片

处理办法:

参考文档:https://docs.pytest.org/en/latest/mark.html

单个标签的话:

在contest里面添加代码:

def pytest_configure(config):
config.addinivalue_line(
"markers", "test" # test 是标签名
)

多标签:

此方法只可以解决单个标签,如果有多个标签呢?

1)把上面的代码进行修改:

def pytest_configure(config):
marker_list = ["test1","test2","test3"] # 标签名集合
for markers in marker_list:
config.addinivalue_line(
"markers", markers
)

2)还有一种方法:添加pytest.int 配置文件

[pytest]
markers = test1
test2
test3

总结:遇到这种问题,以上两种方法,二选一即可。

标签不生效的处理方法:PytestUnknownMarkWarning: Unknown pytest.mark.wallet - is this a typo?...

标签:写代码   configure   nbsp   walle   技术   width   pre   多个   签名   

原文地址:https://www.cnblogs.com/crystal1126/p/12217714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!