如何将nosetests结果保存到位于特定文件夹中的自定义xml文件?
我的目录结构是:
/MyApp
/TestSuites
/Logs
我的测试用例位于/ TestSuites
内的名为tests.py的文件中当我尝试跑步时:
nosetests tests.py --xunit-file=../Logs/testlog.xml
没有生成xml文件。
答案 0 :(得分:0)
我想通了,我所要做的就是这样执行:
nosetests tests.py --with-xunit --xunit-file=../Logs/testlog.xml
答案 1 :(得分:0)
如果您在将来参考,请在命令行中输入以下内容:
$ nosetests --help
这为nosetests提供了一系列选项,包括所需的参数,即:
--with-xunit