Has any one been able to get test results working with Bitbucket Pipelines.
Found a few articles on this, essentially the problem seems to be the inability of the dotnet test
runner to output test results into XML format.
I'm able to get so far as to output a TRX file as per this answer, but Bitbucket does not support this (apparently Bamboo does).
Here's what I have
dotnet test -c Release -r test-results -xml test.xml /path/to/proj.csproj