运行多进程
我正在尝试使用鼻子并行运行测试。
我已经设置了一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该像这样在Python代码中调用nose:
这将在test_location(通常是一个目录)下的测试上运行nose。
You should invoke nose in Python code like this:
That'll run nose on tests beneath test_location (typically a directory).