我目前正在运行我的测试:
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
怎么做?