Django 测试转储数据/结果
当我通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Linux 上,您可以执行以下操作:
将输出重定向到文件。
on linux, you can do this:
to redirect the output to files.
仅限 Linux...
这会将
stdout
和stderr
结果捕获为单个流,并且仍然将输出发送到控制台。另请参阅 在 shell 中,“ 2>&1 ”是什么意思?< /a> 输出重定向说明
和 如何在使用带有管道的“tee”时将 stderr 写入文件? 略有不同的输出重定向方法
Linux only...
This captures the
stdout
andstderr
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