我已经构建了一个使用nose进行测试的Python包。因此,setup.py
包含:
..
test_suite='nose.collector',
tests_require=['nose'],
..
python setup.py test
按预期工作:
running test
...
----------------------------------------------------------------------
Ran 3 tests in 0.065s
OK
由于我使用Jenkins CI,我想将鼻子结果输出为JUnit XML格式:
nosetests <package-name> --with-xunit --verbose
但是,python setup.py test
更优雅,并且无需构建虚拟环境即可安装测试要求。
当通过--with-xunit
呼叫鼻子时,有没有办法将python setup.py test
(或任何其他参数)传递给鼻子?
答案 0 :(得分:3)
您可以使用setup.cfg
例如,你setup.cfg
[nosetests]
with-xunit=1
找到更多信息
答案 1 :(得分:2)
Nose提供了自己的setuptools命令(nosetests
),它接受命令行参数:
python setup.py nosetests --with-xunit
可在此处找到更多信息: http://nose.readthedocs.io/en/latest/setuptools_integration.html