Fix stale TRX merged-report location in artifact post-processing doc - #55577
Merged
Evangelink merged 2 commits intoAug 4, 2026
Merged
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 5cb6841a-b80b-4e3e-bfdc-29e775de2470
|
Azure Pipelines: Successfully started running 1 pipeline(s). 2 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the dotnet test artifact post-processing documentation to reflect the current Microsoft.Testing.Extensions.TrxReport behavior where merged TRX output is written under a merged/ subdirectory, and explains the impact this has on non-recursive TRX globs in CI.
Changes:
- Correct documented merged TRX output location to
merged/. - Update the explanation of why a non-recursive
*.trxglob does not include the merged report (and therefore avoids double-counting in that specific case).
Show a summary per file
| File | Description |
|---|---|
| documentation/general/dotnet-test-artifact-post-processing.md | Updates documentation to reflect merged TRX output being nested under merged/ and clarifies globbing implications. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 1
Evangelink
enabled auto-merge
August 3, 2026 18:10
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 5cb6841a-b80b-4e3e-bfdc-29e775de2470
azat-msft
approved these changes
Aug 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Microsoft.Testing.Extensions.TrxReport.merged/subdirectory, so a non-recursive*.trxglob finds the per-module inputs but not the merged report.This behavior changed in microsoft/testfx#10277, which nested merged TRX reports to avoid double-counting with non-recursive result globs.
Verification
Verified with a two-project MSTest solution containing three tests, using .NET SDK
11.0.100-preview.7.26376.106and locally built testfx packages from currentmain:TR\P1_net10.0_x64.trx,TR\P2_net10.0_x64.trxTR\merged\merged-24aef8ed8acb9fa1ef8fb889eb0ee2b1.trxThe merged report contained all three test results.