From 7d01fbbff645a9a01a89928ec4663d78216bb57b Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Wed, 13 May 2026 11:20:21 -0700 Subject: [PATCH] Disable monitor sample tests Temporarily skip monitor sample tests that depend on the samples aspnetapp image until dotnet/dotnet-docker#7191 is fixed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/Microsoft.DotNet.Docker.Tests/MonitorImageTests.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/Microsoft.DotNet.Docker.Tests/MonitorImageTests.cs b/tests/Microsoft.DotNet.Docker.Tests/MonitorImageTests.cs index bded053d3f..5b7859ee47 100644 --- a/tests/Microsoft.DotNet.Docker.Tests/MonitorImageTests.cs +++ b/tests/Microsoft.DotNet.Docker.Tests/MonitorImageTests.cs @@ -288,7 +288,9 @@ await WebScenario.GetHttpResponseFromContainerAsync( /// Verifies that the image can discover a dotnet process /// in another container via mounting the /tmp directory. /// - [LinuxImageTheory] + // Temporarily disabled because of https://github.com/dotnet/dotnet-docker/issues/7191. + // Re-enable this test when that issue is fixed. + [LinuxImageTheory(Skip = "Temporarily disabled because of https://github.com/dotnet/dotnet-docker/issues/7191. Re-enable when that issue is fixed.")] [MemberData(nameof(GetScenarioData))] public Task VerifyConnectMode(ProductImageData imageData, SampleImageData sampleData) { @@ -323,7 +325,9 @@ await WebScenario.GetHttpResponseFromContainerAsync( /// Verifies that the image can listen for dotnet processes /// in other containers by having them connect to the diagnostic port listener. /// - [LinuxImageTheory] + // Temporarily disabled because of https://github.com/dotnet/dotnet-docker/issues/7191. + // Re-enable this test when that issue is fixed. + [LinuxImageTheory(Skip = "Temporarily disabled because of https://github.com/dotnet/dotnet-docker/issues/7191. Re-enable when that issue is fixed.")] [MemberData(nameof(GetScenarioData))] public Task VerifyListenMode(ProductImageData imageData, SampleImageData sampleData) {