We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running dotnet test --collect "Code Coverage" resulting trx files have references to .coverage files collected:
dotnet test --collect "Code Coverage"
<ResultSummary /> <CollectorDataEntries> <Collector> <UriAttachments> <UriAttachment> <A href="path to .coverage file"></A> </UriAttachment> </UriAttachments> </Collector> </CollectorDataEntries> </ResultSummary>
Some tools (e.g. SonarCloud) may rely on trx files having references to .coverage files.
The output trx file produced by trx-merge tool has no CollectorDataEntries section.
The expected result would be to merge UriAttachment from each source trx into resulting one.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
dotnet test --collect "Code Coverage"
resulting trx files have references to .coverage files collected:Some tools (e.g. SonarCloud) may rely on trx files having references to .coverage files.
The output trx file produced by trx-merge tool has no CollectorDataEntries section.
The expected result would be to merge UriAttachment from each source trx into resulting one.
The text was updated successfully, but these errors were encountered: