Django 测试转储数据/结果

发布于 2024-10-21 09:05:12 字数 70 浏览 4 评论 0原文

当我通过 manage.py test 运行 django 测试时,有没有办法将结果输出到文本文件?

When I run django tests through manage.py test is there a way to output the result to a text file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荭秂 2024-10-28 09:05:12

在 Linux 上,您可以执行以下操作:

python manage.py test > stdout.txt 2> stderr.txt

将输出重定向到文件。

on linux, you can do this:

python manage.py test > stdout.txt 2> stderr.txt

to redirect the output to files.

魂牵梦绕锁你心扉 2024-10-28 09:05:12

仅限 Linux...

python manage.py test 2>&1 | tee -a test.txt

这会将 stdoutstderr 结果捕获为单个流,并且仍然将输出发送到控制台。

另请参阅 在 shell 中,“ 2>&1 ”是什么意思?< /a> 输出重定向说明

如何在使用带有管道的“tee”时将 stderr 写入文件? 略有不同的输出重定向方法

Linux only...

python manage.py test 2>&1 | tee -a test.txt

This captures the stdout and stderr results as a single stream and still sends the output to the console.

Also see In the shell, what does " 2>&1 " mean? for the output redirection explanation

And How do I write stderr to a file while using "tee" with a pipe? for a slightly different output redirection method

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文