测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Pytest----如何正确使用pytest的日志功能
收藏本文
作者:redrose2100 类别: 日期:2022-05-13 17:52:29 阅读:1045 次 消耗积分:0 分
## 一、在pytest.ini配置如下配置 cli live log 部分配置是实时日志,即自动化脚本执行的过程中实时输出,方便调试脚本使用,capture log则是当脚本失败了,会在执行日志的最后将失败的用例中的日志打印输出,便于定位失败的脚本,尤其在执行大量的脚本时,实时日志很难找到报错的位置,capture log则把失败的日志在最后重新打印一遍,如此则非常方便问题定位 ```bash [pytest] # cli live log log_cli = True log_cli_level = info log_cli_format = %(asctime)s %(levelname)s %(message)s log_cli_date_format = %Y-%m-%d %H:%M:%S # capture log log_format = %(asctime)s %(levelname)s %(message)s log_date_format = %Y-%m-%d %H:%M:%S log_level = info ``` ## 二、脚本中使用方法 直接导入logging,然后直接调用logging的info,error,warnning等方法写日志即可,如下演示一个成功的测试函数,一个失败的测试函数,capture log只会捕获失败的用例的日志 ```python import logging def test_func1(): logging.info("info log in test_func1...") logging.error("error log in test_func1...") logging.warning("warnning log in test_func1...") def test_func2(): logging.info("info log in test_func2...") logging.error("error log in test_func2...") logging.warning("warnning log in test_func2...") assert 1==2 ``` 执行结果如下: ```bash $ pytest ========================================================================= test session starts ========================================================================== platform win32 -- Python 3.9.7, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 rootdir: D:\src\blog\tests, configfile: pytest.ini plugins: allure-pytest-2.9.43, caterpillar-pytest-0.0.2, hypothesis-6.31.6, forked-1.3.0, rerunfailures-10.1, xdist-2.3.0 collected 2 items test_demo.py::test_func1 ---------------------------------------------------------------------------- live log call ----------------------------------------------------------------------------- 2021-12-28 10:21:51 INFO info log in test_func1... 2021-12-28 10:21:51 ERROR error log in test_func1... 2021-12-28 10:21:51 WARNING warnning log in test_func1... PASSED [ 50%] test_demo.py::test_func2 ---------------------------------------------------------------------------- live log call ----------------------------------------------------------------------------- 2021-12-28 10:21:51 INFO info log in test_func2... 2021-12-28 10:21:51 ERROR error log in test_func2... 2021-12-28 10:21:51 WARNING warnning log in test_func2... FAILED [100%] =============================================================================== FAILURES =============================================================================== ______________________________________________________________________________ test_func2 ______________________________________________________________________________ def test_func2(): logging.info("info log in test_func2...") logging.error("error log in test_func2...") logging.warning("warnning log in test_func2...") > assert 1==2 E assert 1 == 2 E +1 E -2 test_demo.py:12: AssertionError -------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------- 2021-12-28 10:21:51 INFO info log in test_func2... 2021-12-28 10:21:51 ERROR error log in test_func2... 2021-12-28 10:21:51 WARNING warnning log in test_func2... ======================================================================= short test summary info ======================================================================== FAILED test_demo.py::test_func2 - assert 1 == 2 ===================================================================== 1 failed, 1 passed in 0.12s ====================================================================== ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/190
上一篇:
Pytest----如何重执行失败用例
下一篇:
Pytest----如何捕获标准输出和标准错误输出
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件