标签: python jenkins logging pytest
我正在使用--junit-xml=build/junit.xml运行pytest,因此jenkins可以列出失败的测试,但是它生成的文件还包括调试级别的所有日志记录。该文件越来越大,因为无法发布文件,jenkins运行失败。如何设置较低的日志级别?
--junit-xml=build/junit.xml
我尝试了pytest固定装置:
@pytest.fixture(autouse=True) def loglevel(caplog): caplog.set_level(logging.INFO)
但这没用。