如何使用 doctest 检查程序是否产生了某些输出?
在我的一个函数中,我使用 subprocess.check_call 调用外部程序,这将产生输出。我如何使用 doctest 来确保它产生的输出是我期望的输出?
In one of my functions I'm calling an external program, using subprocess.check_call
, which will produce output. How could I use doctest to make sure the output it's producing is the one I'm expecting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这可以帮助:
正如你所看到的,我使用了 subprocess.check_call 函数的参数 stdout ,以便能够获取命令的输出,除此之外,如果你没有使用 stdout 参数(我认为这是你的情况)我认为很难捕获命令输出。
希望这是有希望的:)
Maybe this can help:
As you can see i used the argument
stdout
of thesubprocess.check_call
function so to be able to get the output of the command , beside that if you are not using thestdout
argument (which i assume that is your case) i think it very hard to capture the command output.Hope this was hopeful :)