使用 nosetest 的 cfg 文件中的插件出错

Error with plugin in cfg file using nosetest

我有一个包含以下行的文件:

suite = LazySuite(all_tests)
run(suite=suite, argv=['','-c', 'nose.cfg'] )

我有这个鼻子配置文件:

[nosetests]
stop=1
with-xunit=1
xunit-file=test.xml

当我 运行 测试套件时,显示以下消息:

Usage: TestSuite1.py [options]

TestSuite1.py: error: Error reading config file 'nose.cfg': no such option 'with-xunit'

Process finished with exit code 2

我不知道发生了什么,因为如果我直接在 cmd 中执行 xunit 插件作为参数,脚本执行没有问题。

有什么建议吗?

我发现了问题。

我在以下几行中定义了配置:

c = Config()
cf = c.configure(argv=['','-c', 'nose.cfg'])

:)