如何使用nosetests测量python单元测试的执行时间?

发布于 2024-10-28 08:34:26 字数 43 浏览 5 评论 0原文

有没有办法计算由nosetests运行的单个Python测试的执行时间?

Is there a way to time the execution time of individual Python tests which are run by nosetests ?

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

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

发布评论

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

评论(2

橘虞初梦 2024-11-04 08:34:26

You might try the nose plug-in posted here: https://github.com/mahmoudimus/nose-timer (or available via pip / PyPi). You can also use the built-in plugin --with-profile to do more serious profiling.

似最初 2024-11-04 08:34:26

或者:

python -m cProfile -o profile.out `which nosetests` .

可以使用例如 runsnakerun 查看输出,这使得它在视觉上非常直观很明显你的性能问题出在哪里。 (例如,它可能是许多测试间接调用的通用方法)

Alternatively:

python -m cProfile -o profile.out `which nosetests` .

The output from can be viewed using, for example, runsnakerun, which makes it visually very obvious where your performance problems are. (e.g. it might be in a common method that many tests indirectly call)

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