Quarantine RazorRuntimeCompilationHostingStartupTest tests (issue #56553)#65881
Merged
ilonatommy merged 1 commit intomainfrom Mar 20, 2026
Merged
Conversation
) These tests were unquarantined in #65864 but are failing again across multiple PRs (#64964, #65871, #65451) in the Helix x64 Subset 2 job. Re-quarantining only the RazorRuntimeCompilationHostingStartupTest methods, not the RazorBuildTest ones. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Re-quarantines two intermittently failing MVC functional tests in RazorRuntimeCompilationHostingStartupTest to stabilize CI while the underlying flakiness is tracked in #56553.
Changes:
- Add
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/56553")]toRazorViews_CanBeServedAndUpdatedViaRuntimeCompilation. - Add
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/56553")]toRazorPages_CanBeServedAndUpdatedViaRuntimeCompilation.
oroztocil
approved these changes
Mar 20, 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.
Problem
Tests in \RazorRuntimeCompilationHostingStartupTest\ were unquarantined in #65864 after appearing stable for 30+ days. However, they are now failing again intermittently across multiple unrelated PRs:
These PRs touch completely different areas of the codebase (Components, OpenAPI, QuickGrid), confirming the failure is a test infrastructure issue, not caused by any PR's changes.
Fix
Re-quarantine only the 2 test methods in \RazorRuntimeCompilationHostingStartupTest:
The 2 tests in \RazorBuildTest\ (also unquarantined in #65864) are left as-is since there's no evidence they are flaking.
Tracked by #56553