[test-quarantine] Quarantine ServerRoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation#101
Open
github-actions[bot] wants to merge 1 commit intomainfrom
Conversation
…celExistingNavigations_HistoryNavigation The base class method in RoutingTest is quarantined via issue dotnet#61080, but the [QuarantinedTest] attribute is not propagated to the ServerRoutingTest subclass in the components-e2e pipeline, causing intermittent CI failures (16 failures in the last 30 days). Adding an explicit override with [QuarantinedTest] to suppress the failures in the server execution variant. Tracking issue: #98 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Quarantines
Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests.ServerRoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigationwhich has been failing intermittently in thecomponents-e2epipeline (definition 87).Root Cause
The base class method
RoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigationis already quarantined via dotnet#61080, but the[QuarantinedTest]attribute from the base class is not propagated to theServerRoutingTestsubclass in the components-e2e pipeline. This causes the server execution variant to still run as an unquarantined test and cause CI failures.This PR adds an explicit method override in
ServerRoutingTestwith a[QuarantinedTest]attribute to suppress the failures in the server execution variant.Associated issue: #98
Failures