Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions tests/Microsoft.DotNet.Docker.Tests/MonitorImageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,9 @@ await WebScenario.GetHttpResponseFromContainerAsync(
/// Verifies that the image can discover a dotnet process
/// in another container via mounting the /tmp directory.
/// </summary>
[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)
{
Expand Down Expand Up @@ -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.
/// </summary>
[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)
{
Expand Down
Loading