gpt4 book ai didi

python - Pytest:如何将日志重定向到控制台和使用 tmp_path fixture 创建的 tmp 文件

转载 作者:行者123 更新时间:2023-12-04 16:45:00 28 4
gpt4 key购买 nike

我正在使用 pytest 框架编写一个脚本,我需要将日志重定向到控制台以及使用 fixture(tmp_path) 创建的临时文件。我写了下面的代码,正在创建文件,但没有观察到控制台日志或文件中的日志:

import os
import logging
from datetime import datetime

global LOG_FILENAME

script_name = os.path.splitext(os.path.basename(__file__))[0]
LOG_FILENAME = datetime.now().strftime(script_name + "_%H_%M_%S_%d_%m_%Y.log")

def test_create_file(tmp_path):
d = tmp_path / "Logs"
d.mkdir()
p = d / LOG_FILENAME

p.write("content")
logging.info(p.strpath)
logging.basicConfig(filename=str(p), level=logging.INFO)
logging.info(str(p))

console = logging.StreamHandler()
console.setLevel(logging.INFO)
formatter = logging.Formatter("%(asctime)s - %(levelname)s - %(message)s")
console.setFormatter(formatter)
logging.getLogger("").addHandler(console)

logging.info("This is log1 message")
logging.info("This is log2 message")
assert p.read_text() == "content"

我期望我的 log1 和 log2 消息的输出应该被捕获在我上面创建的日志文件中,并且在控制台中可见。但是没有一个要求得到满足。以下是我的输出:

nishantsaha@ztphost:~/home/nishantsaha/tests$ python3 -m pytest -v test_tmpdir.py -s
========================================================== test session starts ==========================================================
platform linux -- Python 3.6.9, pytest-5.1.2, py-1.8.0, pluggy-0.13.1 -- /usr/bin/python3
cachedir: .pytest_cache
Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket=<bucket_type>
metadata: {'Python': '3.6.9', 'Platform': 'Linux-4.15.0-76-generic-x86_64-with-Ubuntu-18.04-bionic', 'Packages': {'pytest': '5.1.2', 'py': '1.8.0', 'pluggy': '0.13.1'}, 'Plugins': {'random-order': '1.0.4', 'json-report': '1.2.0', 'metadata': '1.8.0'}}
rootdir: /home/nishantsaha/tests
plugins: random-order-1.0.4, json-report-1.2.0, metadata-1.8.0
collected 1 item

test_tmpdir.py::test_create_file FAILED

关于我遗漏了什么以及如何解决这个问题的任何指示?如果我使用相同的代码但没有固定装置,那么在这种情况下会观察到文件和控制台的日志

最佳答案

您需要将您的 logger("") 级别设置为 INFO 或以下,仅设置处理程序级别是不够的。

logging.getLogger("").setLevel('INFO')

默认记录器的级别是WARNING(30)。有效级别是记录器级别和处理程序级别的交集,由 getEffectiveLevel() 提供。

关于python - Pytest:如何将日志重定向到控制台和使用 tmp_path fixture 创建的 tmp 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60119650/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com