Skip to content

Commit b4df010

Browse files
Re-quarantine RazorRuntimeCompilationHostingStartupTest (issue #56553)
RazorViews_CanBeServedAndUpdatedViaRuntimeCompilation and RazorPages_CanBeServedAndUpdatedViaRuntimeCompilation were unquarantined in #66492 but have been failing again in CI immediately after the unquarantine commit landed on main (builds 1398790, 1398958, 1399225, 1399308). The tests are failing with a Xunit.Sdk.EqualException in the 'cached compilation' check (Assert-3): after requesting the same page with no file changes, the test gets a different assembly name, indicating the page is being spuriously recompiled. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e7b5ff2 commit b4df010

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Mvc/test/Mvc.FunctionalTests/RazorRuntimeCompilationHostingStartupTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public override void Dispose()
4949
public HttpClient Client { get; private set; }
5050

5151
[Fact]
52+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/56553")]
5253
public async Task RazorViews_CanBeServedAndUpdatedViaRuntimeCompilation()
5354
{
5455
// Arrange
@@ -86,6 +87,7 @@ public async Task RazorViews_CanBeServedAndUpdatedViaRuntimeCompilation()
8687
}
8788

8889
[Fact]
90+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/56553")]
8991
public async Task RazorPages_CanBeServedAndUpdatedViaRuntimeCompilation()
9092
{
9193
// Arrange

0 commit comments

Comments
 (0)