标签: python logging stderr nosetests
我正在使用nosetests来测试几个脚本。但是当我运行nosetests时会打印出日志记录。我知道它将日志信息存储到sys.stderr中。有谁知道如何阻止它输出到屏幕?
我只想输出测试结果,就像正常运行unittest一样。
感谢您的帮助
答案 0 :(得分:4)
找到答案,
nosetests test* --nologcapture --nocapture
在命令行中运行它。
由于