diff --git a/Benchmarks.App/Commands/WorkflowCommand.cs b/Benchmarks.App/Commands/WorkflowCommand.cs index 5659d52..8093ffa 100644 --- a/Benchmarks.App/Commands/WorkflowCommand.cs +++ b/Benchmarks.App/Commands/WorkflowCommand.cs @@ -5,8 +5,6 @@ internal sealed class WorkflowCommand : Command [SuppressMessage("ReSharper", "RedundantNullableFlowAttribute")] public override int Execute([NotNull] CommandContext context) { - ConsoleWriter.WriteHeader(); - if (BenchmarkRunner.IsDebugConfiguration(true)) { return 1; @@ -25,7 +23,7 @@ public override int Execute([NotNull] CommandContext context) private static void CombineBenchmarkResults( string resultsDir = "./BenchmarkDotNet.Artifacts/results", string resultsFile = "Benchmarks", - string searchPattern = "Benchmarks.json") + string searchPattern = "Benchmarks.*.json") { var resultsPath = Path.Combine(resultsDir, resultsFile + ".json");