Skip to content

Commit

Permalink
test: skip parallel tests in CICD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezanet committed Sep 19, 2023
1 parent 76f0f02 commit a420462
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/HuskyTest/Cli/InstallCommandTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.IO.Abstractions;
using System.Runtime.Intrinsics.X86;
using CliFx.Exceptions;
using CliFx.Infrastructure;
using CliWrap;
Expand Down Expand Up @@ -134,7 +135,7 @@ public async Task Install_Succeed()
await command.ExecuteAsync(_console);
}

[Fact]
[Fact(Skip = "Skipping this test in CICD, since it won't support it")]
public async Task Install_WithAllowParallelism_ParallelExecutionShouldAbortResourceCreation()
{
// Arrange
Expand Down Expand Up @@ -162,7 +163,7 @@ public async Task Install_WithAllowParallelism_ParallelExecutionShouldAbortResou
_fileSystem.File.Received(3).WriteAllText(Arg.Any<string>(), Arg.Any<string>());
}

[Fact]
[Fact(Skip = "Skipping this test in CICD, since it won't support it")]
public async Task Install_WithoutAllowParallelism_ParallelExecutionShouldNotAbortResourceCreation()
{
// Arrange
Expand Down

0 comments on commit a420462

Please sign in to comment.