我很难让nosetests
输出xml
。
我已安装nosexml
,然后按PYTHONPATH
键入ln -s /usr/lib/python2.7/xml/etree/ elementtree
。
现在我可以输入nosetests -plugins
并获取包含xunit
的插件列表。
如果我跑
nosetests --with-xunit test.py
然后我得到一个带有测试结果的文件'nosetests.xml'。所以我尝试按照以下方式运行鼻子,
nosetests --with-xunit --processes=1 --process-timeout=8000 test.py
并获取一个文件'nosetests.xml',表示没有测试运行。
<?xml version="1.0" encoding="UTF-8"?><testsuite name="nosetests" tests="0" errors="0" failures="0" skip="0"></testsuite>
我可以将--with-xunit
与其他选项一起使用吗?