0

在 MSbuild 任务之后,我在 Bamboo CI 中将 NUnit 3.0.1 作为构建任务运行。我收到以下错误 Invalid argument: -xml=TestResult.xml Running a bat file as specified in How to run NUnit Runner in Atlassian Bamboo with NUnit 3 也没有工作,因为它给了我错误 nunit3-console.exe is not a公认的命令

4

1 回答 1

1

Bamboo CI 似乎还没有完全支持 NUnit 3.X,请参阅此处的问题。

您看到的错误是因为 NUnit 3 不再支持该-xml选项。

查看关于 Bamboo 问题的注释,看起来最好的方法是将 NUnit3 作为脚本任务运行(使用选项--result=YOURPATH;format:nunit2将结果格式化为 NUnit2 的格式),然后添加 NUnit Parser Task 以将结果合并回.

于 2016-02-16T13:57:57.800 回答