Skip to content

Commit a963451

Browse files
committed
WIP: fail on windows
1 parent 2bbc472 commit a963451

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs

+9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ namespace Pulumi.Automation.Tests
1212
{
1313
public class LocalPulumiCmdTests
1414
{
15+
[Fact]
16+
public void FailOnWindows()
17+
{
18+
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
19+
{
20+
Assert.True(false);
21+
}
22+
}
23+
1524
[Fact]
1625
public async Task CheckVersionCommand()
1726
{

0 commit comments

Comments
 (0)