Skip to content

Commit

Permalink
fail-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhurst committed Aug 28, 2024
1 parent 82cf343 commit c89a985
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/ModularPipelines.Build/Modules/RunUnitTestsModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class RunUnitTestsModule : Module<CommandResult[]>
Project = unitTestProjectFile.Path,
NoBuild = true,
Framework = "net8.0",
Arguments = ["--coverage", "--coverage-output-format", "cobertura"],
Arguments = ["--coverage", "--coverage-output-format", "cobertura", "--fail-fast"],
Configuration = Configuration.Release,
EnvironmentVariables = new Dictionary<string, string?>
{
Expand Down
1 change: 0 additions & 1 deletion test/ModularPipelines.UnitTests/ParallelLimiterTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Collections.Concurrent;
using ModularPipelines.Context;
using ModularPipelines.Interfaces;
using ModularPipelines.Modules;
Expand Down

0 comments on commit c89a985

Please sign in to comment.