我试图在 .coveragerc
上尽可能多地移动pytest-cov的配置我需要复制文件中命令行上传递的 - cov-report xml 参数。
我尝试使用 [xml] 标记和输出=无论,然后我找到 outfile ,我也使用了那个,但是仍然没有将报告流式传输到xml文件。
任何人都有同样的问题吗?
答案 0 :(得分:2)
您无法在.coveragerc文件中指定报告类型。如果你想停止使用pytest-cov,那么你需要两个命令:一个用于在coverage下运行测试,另一个用于生成报告:
$ coverage run -m py.test etc etc
$ coverage xml