如何将pytest的结果/日志保存到文件中?

2022-03-01 00:00:00 python logging pytest

问题描述

我在尝试将pytest中显示的所有结果保存到一个文件(txt、log,无关紧要)时遇到了问题。在下面的测试示例中,我想将控制台中显示的内容捕获到某种类型的文本/日志文件中:

import pytest
import os

def test_func1():
    assert True


def test_func2():
    assert 0 == 1

if __name__ == '__main__':

    pytest.main(args=['-sv', os.path.abspath(__file__)])

要保存到文本文件的控制台输出:

test-mbp:hi_world ua$ python test_out.py
================================================= test session starts =================================================
platform darwin -- Python 2.7.6 -- py-1.4.28 -- pytest-2.7.1 -- /usr/bin/python
rootdir: /Users/tester/PycharmProjects/hi_world, inifile: 
plugins: capturelog
collected 2 items 

test_out.py::test_func1 PASSED
test_out.py::test_func2 FAILED

====================================================== FAILURES =======================================================
_____________________________________________________ test_func2 ______________________________________________________

    def test_func2():
>       assert 0 == 1
E       assert 0 == 1

test_out.py:9: AssertionError
========================================= 1 failed, 1 passed in 0.01 seconds ==========================================
test-mbp:hi_world ua$ 

解决方案

看起来您的所有测试输出都是stdout,因此您只需将您的Python调用的输出"重定向"到那里:

python test_out.py >myoutput.log

您还可以将输出"TEE"到多个位置。例如,您可能希望记录到该文件,但也可以在控制台上查看输出。然后,上面的示例变成:

python test_out.py | tee myoutput.log

相关文章