gpt4 book ai didi

python - 如何以编程方式为 nose 指定 xml 输出

转载 作者:太空宇宙 更新时间:2023-11-04 10:49:19 25 4
gpt4 key购买 nike

我正在使用 Nose 从脚本运行测试。我希望能够指定 xunit xml 输出文件。文档说我可以使用 --xunit-file=FILE 选项来完成。

我有

noseargs = ['--with-xunit', '--xunit-file=output.xml', '--tests=mytest']
nose.run(argv=noseargs)

运行后,output.xml 文件不存在了。我发现如果我交换这两个参数,它看起来像:

noseargs = ['--xunit-file=output.xml', '--with-xunit', '--tests=mytest']
nose.run(argv=noseargs)

它将在我的工作目录中创建一个 nosetests.xml 文件。所以看起来需要先处理 --with-xunit 参数,然后需要指定文件。关于应该如何指定我缺少的文件有什么特别之处吗?

最佳答案

Nose 吃掉 argv 的第一个参数,因为在命令行上它是程序的名称。

这适用于:

noseargs = ['foo', '--with-xunit', '--xunit-file=output.xml', '--tests=mytest']
nose.run(argv=noseargs)

关于python - 如何以编程方式为 nose 指定 xml 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14969265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com