将 django manage.py 输出(在 Windows 中)重定向到文本文件

发布于 2024-10-20 17:45:47 字数 620 浏览 1 评论 0原文

我正在尝试将 Manage.py 的输出重定向到文本文件,但只有一些输出被重定向到文本文件。如何将所有输出重定向到文本文件?

我的命令提示符:

C:\Development\web-py\p1st2\pianos1st-system>python manage.py test > test_results.txt
.....................................................................................................................
----------------------------------------------------------------------
Ran 117 tests in 2.026s

OK

我的 test_results.txt 文件:

Creating test database for alias 'default'...
Destroying test database for alias 'default'...

我使用的是 Windows 7 32 位 SP1 和 Django SVN。

I'm trying to redirect the output from manage.py to a text file, but only some output is getting redirected to the text file. How do I redirect all output to the text file?

My command prompt:

C:\Development\web-py\p1st2\pianos1st-system>python manage.py test > test_results.txt
.....................................................................................................................
----------------------------------------------------------------------
Ran 117 tests in 2.026s

OK

My test_results.txt file:

Creating test database for alias 'default'...
Destroying test database for alias 'default'...

I'm using Windows 7 32bit SP1 and Django SVN.

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

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

发布评论

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

评论(1

李白 2024-10-27 17:45:47

某些类型的控制台消息将绕过输出重定向(或调用任何使用“>”的内容)。我注意到 sys.stderr.write() 例如就是这样做的。

在末尾添加“2>&1”有助于解决此问题:

python manage.py test purchaseplans > test_results.txt 2>&1

编辑:解释正在发生的事情:
http://en.wikipedia.org/wiki/Redirection_(computing)#Redirecting_to_and_from_the_standard_file_handles

Certain types of console messages will bypass the output redirection (or whatever using ">" is called). I noticed that sys.stderr.write() for instance did this.

Adding a "2>&1" at the end helps with this:

python manage.py test purchaseplans > test_results.txt 2>&1

Edit: Explanation of what is going on:
http://en.wikipedia.org/wiki/Redirection_(computing)#Redirecting_to_and_from_the_standard_file_handles

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