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) {