Skip to content

Commit

Permalink
Disable the PCL test on non-Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Feb 14, 2023
1 parent 157dea0 commit d8d8729
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/tool/Integration.Tests/E2ETest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ public E2ETest(ITestOutputHelper output)
[Theory]
public async Task UpgradeTest(string scenarioPath, string inputFileName, string entrypoint)
{
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && scenarioPath == "PCL")
{
return;
}

// Create a temporary working directory
var workingDir = Path.Combine(Path.GetTempPath(), TempDirectoryName, Guid.NewGuid().ToString());
var dir = Directory.CreateDirectory(workingDir);
Expand Down

0 comments on commit d8d8729

Please sign in to comment.