如何为pytest的junit-xml文件中捕获的内容设置日志级别?

时间:2019-05-17 15:53:23

标签: python jenkins logging pytest

我正在使用--junit-xml=build/junit.xml运行pytest,因此jenkins可以列出失败的测试,但是它生成的文件还包括调试级别的所有日志记录。该文件越来越大,因为无法发布文件,jenkins运行失败。如何设置较低的日志级别?

我尝试了pytest固定装置:

@pytest.fixture(autouse=True)
def loglevel(caplog):
    caplog.set_level(logging.INFO)

但这没用。

0 个答案:

没有答案