You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/coverlet.console/Program.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ static int Main(string[] args)
37
37
newOption<string>(new[]{"--targetargs","-a"},"Arguments to be passed to the test runner."){Arity=ArgumentArity.ZeroOrOne},
38
38
newOption<string>(new[]{"--output","-o"},"Output of the generated coverage report"){Arity=ArgumentArity.ZeroOrOne},
39
39
newOption<LogLevel>(new[]{"--verbosity","-v"},()=>LogLevel.Normal,"Sets the verbosity level of the command. Allowed values are quiet, minimal, normal, detailed."){Arity=ArgumentArity.ZeroOrOne},
40
-
newOption<string[]>(new[]{"--formats","-f"},()=>new[]{"json"},"Format of the generated coverage report."){Arity=ArgumentArity.ZeroOrMore},
40
+
newOption<string[]>(new[]{"--format","-f"},()=>new[]{"json"},"Format of the generated coverage report."){Arity=ArgumentArity.ZeroOrMore},
41
41
newOption<string>("--threshold","Exits with error if the coverage % is below value."){Arity=ArgumentArity.ZeroOrOne},
42
42
newOption<List<string>>("--threshold-type",()=>newList<string>(newstring[]{"line","branch","method"}),"Coverage type to apply the threshold to."){Arity=ArgumentArity.ZeroOrMore},
43
43
newOption<ThresholdStatistic>("--threshold-stat",()=>ThresholdStatistic.Minimum,"Coverage statistic used to enforce the threshold value."){Arity=ArgumentArity.ZeroOrMore},
0 commit comments