Enable fully qualified Helix test name reporting - #55404
Merged
Merged
Conversation
|
Azure Pipelines: 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. |
| - template: /eng/common/core-templates/job/helix-job-monitor.yml@self | ||
| parameters: | ||
| helixAccessToken: $(HelixApiAccessToken) | ||
| useFullyQualifiedTestName: true |
Member
There was a problem hiding this comment.
Is there a reason this is not the default behavior?
Member
Author
There was a problem hiding this comment.
Just to avoid break in history for others. There was a request to make it default but I would like to make sure this is working well here first (I am quite new with Helix codebase so I couldn't find how to validate the fix with real E2E)
This was referenced Jul 24, 2026
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: a85f3e36-e8eb-468a-9902-f658dd9f1e62
Evangelink
force-pushed
the
dev/amauryleve/enable-helix-test-names
branch
from
August 5, 2026 16:07
58ccec7 to
72f23b9
Compare
Evangelink
marked this pull request as ready for review
August 7, 2026 13:30
Evangelink
enabled auto-merge
August 7, 2026 13:30
|
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
This PR enables fully qualified test name reporting in the Helix Job Monitor for Azure DevOps PR and CI pipelines, reducing test-name collisions and providing stable test identities in AzDO (particularly important after MSTest migration).
Changes:
- Sets
useFullyQualifiedTestName: trueon the Helix job monitor job in the PR pipeline. - Sets
useFullyQualifiedTestName: trueon the Helix job monitor job in the CI pipeline (test-mode path).
Show a summary per file
| File | Description |
|---|---|
.vsts-pr.yml |
Enables fully qualified test name reporting for the PR Helix job monitor job. |
.vsts-ci.yml |
Enables fully qualified test name reporting for the CI Helix job monitor job when run in test mode. |
Copilot's findings
- Files reviewed: 2/2 changed files
- Comments generated: 0
MichaelSimons
approved these changes
Aug 7, 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
Enable fully qualified test name reporting for the Helix job monitor in both SDK PR and CI pipelines.
This avoids collisions when different test classes contain methods with the same name and gives Azure DevOps a stable fully qualified test identity.
Dependency
Blocked on #55595. That VMR backflow contains the
useFullyQualifiedTestNametemplate parameter and the correspondingMicrosoft.DotNet.Helix.JobMonitorsupport added by dotnet/arcade#17104.This branch is rebased onto the current SDK
mainand is prepared to merge after #55595 lands. The draft should remain unmerged until SDK'seng/common/core-templates/job/helix-job-monitor.ymlandMicrosoft.DotNet.Helix.JobMonitordependency contain that change.Fixes the Helix reporting side of #55123.