运行多进程

发布于 2024-10-08 04:38:47 字数 187 浏览 4 评论 0原文

我正在尝试使用鼻子并行运行测试。

我已经设置了一个nose.cfg 文件来包含以下内容:

[nosetests]
verbosity=2
processes=2

我需要能够使用nose.main() 或nose.run() 以编程方式运行。最好的方法是什么?如何选择考试地点?

I'm trying to run tests in parallel using nose.

I have setup a nose.cfg file to contain the following:

[nosetests]
verbosity=2
processes=2

I need to be able to run the programatically using either nose.main() or nose.run(). Whats the best way to do this? How do I select the test location?

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

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

发布评论

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

评论(1

穿透光 2024-10-15 04:38:47

您应该像这样在Python代码中调用nose:

nose.run(defaultTest=test_location)

这将在test_location(通常是一个目录)下的测试上运行nose。

You should invoke nose in Python code like this:

nose.run(defaultTest=test_location)

That'll run nose on tests beneath test_location (typically a directory).

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