Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05cc51a

Browse files
committedJan 29, 2024
WIP: fail on windows
1 parent 473bd5a commit 05cc51a

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)
Please sign in to comment.