Skip to content

Commit

Permalink
Re-enable SDK tests for Alpine 3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman committed Mar 7, 2022
1 parent d5aaa44 commit 62456c1
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tests/Microsoft.DotNet.Docker.Tests/SdkImageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,6 @@ public async Task VerifyDotnetFolderContents(ProductImageData imageData)
return;
}

// Disable until PowerShell issue is fixed: https://github.com/PowerShell/PowerShell/issues/16532
if (imageData.OS == "alpine3.15")
{
return;
}

if (!(imageData.Version.Major >= 5 ||
(imageData.Version.Major >= 3 &&
(imageData.SdkOS.StartsWith(OS.AlpinePrefix) || !DockerHelper.IsLinuxContainerModeEnabled))))
Expand Down Expand Up @@ -337,12 +331,6 @@ private void PowerShellScenario_Execute(ProductImageData imageData, string optio
return;
}

// Disable until PowerShell issue is fixed: https://github.com/PowerShell/PowerShell/issues/16532
if (imageData.OS == "alpine3.15")
{
return;
}

// A basic test which executes an arbitrary command to validate PS is functional
string output = DockerHelper.Run(
image: imageData.GetImage(DotNetImageType.SDK, DockerHelper),
Expand Down

0 comments on commit 62456c1

Please sign in to comment.