如何查询nose中插件的启用状态?
我目前正在尝试查看是否在我的测试工具中启用了鼻子插件。我想做的具体事情是将覆盖模块的启用状态传播到子进程执行。本质上,当使用 --with-coverage 时,我想直接执行覆盖工具下的子进程(或向下传播标志)。
这可以做到吗?
I'm currently trying to see if a nose plugin is enabled from within my test harness. The specific thing I'm trying to do is propagate the enable status of the coverage module to subprocess executions. Essentially when --with-coverage is used, I want to execute the subprocesses under the coverage tool directly (or propagate a flag down).
Can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您需要解决鼻子问题的情况之一。请参阅覆盖率文档中的测量子流程,了解确保子流程自动调用覆盖率的方法。
This is one of those cases where you need to work around nose. See Measuring subprocesses in the coverage documentation for ways to ensure that subprocesses automatically invoke coverage.