Pytest配置文件pytest.ini如何编写生成日志文件?

1、新建pytest.ini文件

python 复制代码
[pytest]
log_cli=true
log_leveL=NOTSET
log_format = %(asctime)s %(levelname)s %(message)s %(filename)s %(funcName)s %(lineno)d
log_date_format = %Y-%m-%d %H:%M:%S

log_file = ./logdata/log.log
log_file_level = info
log_file_format = %(asctime)s %(levelname)s %(message)s %(filename)s %(funcName)s %(lineno)d
log_file _date_format = %Y-%m-%d %H:%M:%S

关闭日志

复制代码
log_cli=true 改成 log_cli=false
相关推荐
MJH8271 小时前
Selenium + Pytest自动化测试框架实战!
selenium·测试工具·jmeter·职场和发展·pytest·postman
大G哥9 小时前
pytest自动化测试数据驱动yaml/excel/csv/json
json·excel·pytest
测试杂货铺2 天前
UI自动化测试实战实例
自动化测试·软件测试·python·selenium·测试工具·测试用例·pytest
开源优测2 天前
深入解析 Pytest 钩子函数及二次开发过程
pytest
开源优测2 天前
深度解析 Pytest 中的 conftest.py
pytest
天天要nx3 天前
D105【python 接口自动化学习】- pytest进阶参数化用法
python·pytest
天天要nx4 天前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
程序猿000001号5 天前
探索Python的pytest库:简化单元测试的艺术
python·单元测试·pytest
爱学测试的雨果6 天前
分布式测试插件 pytest-xdist 使用详解
分布式·pytest