如何在setup.cfg中传递几个值作为nosetests的选项?

时间:2017-12-27 19:17:00

标签: python python-3.x nose

我目前正在运行我的测试:

nosetests3 -vd -w . module1 module2

......我想自动化这些选项。

但是,我找不到将多个值传递给选项的方法......

我试过了:

[nosetests]
verbosity=1
detailed-errors=1
where=.
   module1
   module2

......但是它回复了

ValueError: Working directory '.
module1
module2' not found, or not a directory

和:

[nosetests]
verbosity=1
detailed-errors=1
where=.
where=module1
where=module2

它回复:

nosetests: error: Error reading config file 'setup.cfg': While reading from 'setup.cfg' [line  6]: option 'where' in section 'nosetests' already exists

怎么做?

0 个答案:

没有答案