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 ff6e0f7 commit dc96cc5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sdk/Pulumi.Automation.Tests/LocalPulumiCmdTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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()
{
Expand Down

0 comments on commit dc96cc5

Please sign in to comment.