浅谈Pytest中的warning处理
浅谈Pytest中的warning处理
没有处理warning
- 我们写一个简单的测试
import pytest
def test_demo():
import warnings
warnings.warn('test warn',DeprecationWarning)
assert True
if __name__ == '__main__':
pytest.main(['-sv',__file__])
- 你运行的话会有如下提示
============================= test session starts =============================
platform win32 -- Python 3.9.6, pytest-7.1.2, pluggy-1.0.0 -- D:\Python39\python.exe
cachedir: .pytest_cache
metadata: ...
rootdir: D:\pythonProject\AutoTest\PytestTemp, configfile: pytest.ini
plugins: ...
collecting ... collected 1 item
test_demo.py::test_demo PASSED
============================== warnings summary ===============================
testCases/test_demo.py::test_demo
test_demo.py:5: DeprecationWarning: test warn
warnings.warn('test warn',DeprecationWarning)
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
======================== 1 passed, 1 warning in 0.05s =========================
进程已结束,退出代码为 0
- warning在pytest3.1之后会在执行期间捕获,初学者多见于mark漏了标记,可以参考浅谈Pytest中的marker
-W 命令行及处理
pytest提供了一个命令行参数-W
-W PYTHONWARNINGS, --pythonwarnings=PYTHONWARNINGS
含义: set which warnings to report, see -W option of python itself.
python的-W
-W arg : warning control; arg is action:message:category:module:lineno also PYTHONWARNINGS=arg
https://docs.python.org/3/library/warnings.html#warning-filter
关于格式说明
action is one of the following strings:
Value Disposition "default"
print the first occurrence of matching warnings for each location (module + line number) where the warning is issued "error"
turn matching warnings into exceptions "ignore"
never print matching warnings "always"
always print matching warnings "module"
print the first occurrence of matching warnings for each module where the warning is issued (regardless of line number) "once"
print only the first occurrence of matching warnings, regardless of location message is a string containing a regular expression that the start of the warning message must match, case-insensitively. In
-W
andPYTHONWARNINGS
, message is a literal string that the start of the warning message must contain (case-insensitively), ignoring any whitespace at the start or end of message.category is a class (a subclass of
Warning
) of which the warning category must be a subclass in order to match.module is a string containing a regular expression that the start of the fully qualified module name must match, case-sensitively. In
-W
andPYTHONWARNINGS
, module is a literal string that the fully qualified module name must be equal to (case-sensitively), ignoring any whitespace at the start or end of module.lineno is an integer that the line number where the warning occurred must match, or
0
to match all line numbers.
增加命令行处理
# action:message:category:module:lineno # 注意格式
-W error::DeprecationWarning # 意思是看到DeprecationWarning就把它当做是一个error
================================== FAILURES ===================================
__________________________________ test_demo __________________________________ def test_demo():
import warnings
> warnings.warn('test warn',DeprecationWarning)
E DeprecationWarning: test warn test_demo.py:5: DeprecationWarning
=========================== short test summary info ===========================
FAILED test_demo.py::test_demo - DeprecationWarning: test warn
============================== 1 failed in 0.09s ==============================可以看到case变成了failed
换一下,改为ignore,case就PASSED了
pytest.main(['-sv','-W ignore::DeprecationWarning',__file__])
============================== 1 passed in 0.07s ==============================
等价的装饰器pytest.mark.filterwarnings
命令行的做法也可以等价到装饰器的写法,跟大多数的插件类似,命令行是针对所有的,装饰器是针对某个case的
@pytest.mark.filterwarnings('ignore::DeprecationWarning') # 装饰在被测函数上即可 @pytest.mark.filterwarnings('error::DeprecationWarning')
等价的pytest.ini中的filterwarnings
你也可以这样写一个pytest.ini
[pytest]
filterwarnings:
ignore::DeprecationWarning或者这样
[pytest]
filterwarnings:
error::DeprecationWarning
还可以这样
[pytest]
filterwarnings:
error
ignore::DeprecationWarning这个意思是,所有的warning都被处理成error,但忽略DeprecationWarning。
注意:当警告与列表中的多个选项匹配时,将执行最后一个匹配选项的操作。
关于warning的其他
--disable-warnings命令行选项可以禁用warning summary
============================== warnings summary ===============================
testCases/test_demo.py::test_demo
test_demo.py:5: DeprecationWarning: test warn
warnings.warn('test warn',DeprecationWarning) -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html上面的warning加了命令行之后就没了
命令行的解释
--disable-warnings, --disable-pytest-warnings : disable warnings summary
还有一个命令行-pno:warnings,完全禁用警告捕获
pytest.main(['-sv','-pno:warnings',__file__])
实测-pno:warnings的pno要挨在一起,这有点...
命令行的解释
-p name early-load given plugin module name or
entry point (multi-allowed).
To avoid loading of plugins, use the
`no:` prefix, e.g. `no:doctest`.如果你放在pytest.ini中的pno就可分可合(离谱)
[pytest]
addopts = -p no:warnings # -pno:warnings
浅谈Pytest中的warning处理的更多相关文章
- 浅谈Java中的equals和==(转)
浅谈Java中的equals和== 在初学Java时,可能会经常碰到下面的代码: 1 String str1 = new String("hello"); 2 String str ...
- 浅谈Linux中的信号处理机制(二)
首先谢谢 @小尧弟 这位朋友对我昨天夜里写的一篇<浅谈Linux中的信号处理机制(一)>的指正,之前的题目我用的“浅析”一词,给人一种要剖析内核的感觉.本人自知功力不够,尚且不能对着Lin ...
- 浅谈Java中的对象和引用
浅谈Java中的对象和对象引用 在Java中,有一组名词经常一起出现,它们就是“对象和对象引用”,很多朋友在初学Java的时候可能经常会混淆这2个概念,觉得它们是一回事,事实上则不然.今天我们就来一起 ...
- 浅谈Java中的equals和==
浅谈Java中的equals和== 在初学Java时,可能会经常碰到下面的代码: String str1 = new String("hello"); String str2 = ...
- 转【】浅谈sql中的in与not in,exists与not exists的区别_
浅谈sql中的in与not in,exists与not exists的区别 1.in和exists in是把外表和内表作hash连接,而exists是对外表作loop循环,每次loop循环再对内表 ...
- 浅谈iOS中的userAgent
浅谈iOS中的userAgent User-Agent(用户代理)字符串是Web浏览器用于声明自身型号版本并随HTTP请求发送给Web服务器的字符串,在Web服务器上可以获取到该字符串. 在公司产 ...
- 浅谈JavaScript中的闭包
浅谈JavaScript中的闭包 在JavaScript中,闭包是指这样一个函数:它有权访问另一个函数作用域中的变量. 创建一个闭包的常用的方式:在一个函数内部创建另一个函数. 比如: functio ...
- 浅谈sql中的in与not in,exists与not exists的区别
转 浅谈sql中的in与not in,exists与not exists的区别 12月12日北京OSC源创会 —— 开源技术的年终盛典 » sql exists in 1.in和exists ...
- 浅谈Java中的深拷贝和浅拷贝(转载)
浅谈Java中的深拷贝和浅拷贝(转载) 原文链接: http://blog.csdn.net/tounaobun/article/details/8491392 假如说你想复制一个简单变量.很简单: ...
- 浅谈Java中的深拷贝和浅拷贝
转载: 浅谈Java中的深拷贝和浅拷贝 假如说你想复制一个简单变量.很简单: int apples = 5; int pears = apples; 不仅仅是int类型,其它七种原始数据类型(bool ...
随机推荐
- Oracle 表空间常用操作
aliases: [Oracle表空间] tags: [数据库,Oracle,Blog] summary: [Oracle表空间常用操作,包括查询.分析.扩容.删除.优化等] date: ...
- 查看、校验、归档…带你掌握openGauss账本数据库
摘要:账本数据库融合了区块链思想,将用户操作记录至两种历史表中:用户历史表和全局区块表. 本文分享自华为云社区<openGauss账本数据库,你不知道的那些事儿>,作者:Gauss松鼠会 ...
- 微信公众号调试经常报access_token is invalid or not latest rid
是因为我没有使用中控服务器,所以服务器上使用同一个appid和secret获取了access_token 调试的时候再重新获取了一个新的access_token,所以导致微信服务器发放了新的acces ...
- (Java)设计模式:创建型
前言 这篇内容是从另一篇:UML建模.设计原则 中分离出来的,原本这个创建型设计模式是和其放在一起的 但是:把这篇创建型设计模式放在一起让我贼别扭,看起来贼不舒服,越看念头越不通达,导致老衲躺在床上脑 ...
- 教你用JavaScript实现随机点名
案例介绍 欢迎来到我的小院,我是霍大侠,恭喜你今天又要进步一点点了!我们来用JavaScript相关知识,做一个随机点名的案例.你可以通过点击开始按钮控制上方名字的闪动,点击停止按钮可以随机选定一个名 ...
- crtl+鼠标左键代码出现class file editor,source not found
点击Attached source或者已经添加过按钮变成Change Attached Source 点击之后将自己jdk路径下的src.zip导入就可以了 图片来自https://blog.csdn ...
- 【实时数仓】Day01-数据采集层:数仓分层、实时需求、架构分析、日志数据采集(采集到指定topic和落盘)、业务数据采集(MySQL-kafka)、Nginx反向代理、Maxwell、Canel
一.数仓分层介绍 1.实时计算与实时数仓 实时计算实时性高,但无中间结果,导致复用性差 实时数仓基于数据仓库,对数据处理规划.分层,目的是提高数据的复用性 2.电商数仓的分层 ODS:原始日志数据和业 ...
- Redis Lettuce长时间超时问题
1. 背景 新上线了一个服务,在压测的时候大量返回错误,查看报错是io.lettuce.core.RedisCommandTimeoutException: Command timed out aft ...
- 编程思想的转变 软件开发目录规范 collections、time、datetime、 random模块
目录 编程思想的转变 软件目录开发规范(重要) 内置模块:collections模块 简介 具名元组 namedtuple 实现二维坐标系 实现扑克牌 队列与堆栈 collection.deque() ...
- C#关于委托的一些事,开发日志
----- 委托是什么------ 其实委托事件很好理解,就当成是c语言中的函数指针或者是回调函数,或者说换种理解方式,信号和槽?触发器和接收器?总之就是一个地方调用了这个函数,那么在另一个地方也会调 ...