-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Re-quarantine ServerRoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation #63618
New issue
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
Re-quarantine ServerRoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation #63618
Conversation
…rlappingNavigationsCancelExistingNavigations_HistoryNavigation Co-authored-by: oroztocil <[email protected]>
…utingTest method Co-authored-by: oroztocil <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR quarantines a flaky test NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation
by adding the [QuarantinedTest]
attribute with a reference to tracking issue #61080. This prevents the test from causing CI build failures while the underlying issue is being investigated.
- Adds quarantine attribute to prevent flaky test from breaking CI builds
- Includes proper tracking issue reference for investigation context
/backport to release/9.0 |
Started backporting to release/9.0: https://github.com/dotnet/aspnetcore/actions/runs/18325772678 |
This PR re-quarantines the flaky test
Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests.ServerRoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation
and adds a reference to the tracking issue #61080.Problem
The
NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation
test in the server execution context has been identified as flaky and needs to be quarantined to prevent it from causing CI build failures while the underlying issue is being investigated.Solution
The test is quarantined by adding the
[QuarantinedTest]
attribute directly to theNavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation
method inRoutingTest.cs
with a reference to the tracking issue #61080.Key Benefits
Changes Made
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61080")]
attribute directly to the test methodThe quarantined test will be excluded from regular CI builds but will continue to run on the daily quarantined test schedule, allowing monitoring of the fix progress.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.