如何将pytest的结果/日志保存到文件中? [英] How to save pytest's results/logs to a file?

查看:217
本文介绍了如何将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

这篇关于如何将pytest的结果/日志保存到文件中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆