Skip to content

Commit

Permalink
🔧 Disable code coverage target
Browse files Browse the repository at this point in the history
  • Loading branch information
pleonex committed Jan 16, 2024
1 parent d0c8a20 commit ccecb88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/orchestrator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ public sealed class BuildLifetime : FrostingLifetime<BuildContext>
{
public override void Setup(BuildContext context, ISetupContext info)
{
context.DotNetContext.CoverageTarget = 85;
// Do not enforce coverage as everyone may not have all test resources
context.DotNetContext.CoverageTarget = 0;

context.ReadArguments();

Expand Down

0 comments on commit ccecb88

Please sign in to comment.