Skip to content

Commit

Permalink
WIP: fail on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
julienp committed Jan 29, 2024
1 parent 473bd5a commit 05cc51a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ namespace Pulumi.Automation.Tests
{
public class LocalPulumiCmdTests
{
[Fact]
public void FailOnWindows()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
Assert.True(false);
}
}

[Fact]
public async Task CheckVersionCommand()
{
Expand Down

0 comments on commit 05cc51a

Please sign in to comment.