0

我正在尝试在nose2中加载“图层”插件,但我无法弄清楚配置文件的格式。文档在这里: http: //nose2.readthedocs.io/en/latest/plugins/layers.html,但它不包含要在配置文件中列出的模块名称。我之前已经为nose2 加载了第三方插件,但现在我遇到了未预加载的预安装插件的问题。这就是我现在的配置文件:

[unittest]
plugins = nose2_html_report.html_report
          layers.Layers
          layers.LayerReport

[html-report]
always-on = True

[layers-report]
always-on = True

当我尝试使用此 .cfg 文件运行时,我收到一条错误消息,提示 layers.Layers 不是包。

任何帮助或指导将不胜感激!

4

1 回答 1

0

我一直在研究同样的问题!

以下对我有用。

[unittest]
plugins = nose2.plugins.layers
于 2017-09-16T00:44:07.107 回答