标签: .net .net-core xunit bitbucket-pipelines
任何人都可以使用Bitbucket Pipelines获得测试结果。
找到了一些关于此的文章,从本质上讲,问题似乎是dotnet test运行程序无法将测试结果输出为XML格式。
dotnet test
按照这个答案,我能够输出一个TRX文件,但是Bitbucket does not support this(显然Bamboo确实如此)。
这就是我所拥有的
dotnet test -c Release -r test-results -xml test.xml /path/to/proj.csproj