diff --git a/sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs b/sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs index a45c3c03..25b59e49 100644 --- a/sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs +++ b/sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Runtime.InteropServices; using System.Text.RegularExpressions; using System.Threading.Tasks; using Pulumi.Automation.Commands; @@ -12,6 +13,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() {