Open BrennanConroy opened 4 months ago
Looks like this issue also covers Microsoft.AspNetCore.Mvc.FunctionalTests.RazorRuntimeCompilationHostingStartupTest.RazorViews_CanBeServedAndUpdatedViaRuntimeCompilation
https://dev.azure.com/dnceng-public/public/_build/results?buildId=730837
Same issue hit for Microsoft.AspNetCore.Mvc.FunctionalTests.RazorRuntimeCompilationHostingStartupTest.RazorPages_CanBeServedAndUpdatedViaRuntimeCompilation
also.
main
: https://dev.azure.com/dnceng-public/public/_build/results?buildId=749856&view=results
PRs:
Failing Test(s)
Error Message
Stacktrace
Logs
Other Info
After adding logging in https://github.com/dotnet/aspnetcore/pull/55592 these two tests became flaky. It looks like somehow
/Pages/Fallback.cshtml
keeps needing recompilation which triggers/Views/UpdateableViews/Index.cshtml
to need recompilation. And since the test checks some dynamic content onIndex.cshtml
, the recompilation causes that content to change which fails the test. The root cause would be figuring out why/Pages/Fallback.cshtml
keeps recompiling.