Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
si618 committed Mar 11, 2024
1 parent 7337515 commit 2f9caf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Benchmarks.App/Commands/WorkflowCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public override int Execute(CommandContext context)
}

// Exporters: GitHub/StackOverflow/RPlot/CSV/JSON/HTML/XML")]
var args = new[] { "--filter", $"Benchmarks*", "--exporters", "json" };
var args = new[] { "--filter", "*", "--exporters", "json" };

BenchmarkRunner.RunBenchmarks([.. Reflection.GetBenchmarkTypes()], args);

Expand All @@ -24,7 +24,7 @@ private static void CombineBenchmarkResults(
string resultsFile = "Benchmarks",
string searchPattern = "Benchmarks.*.json")
{
var resultsPath = Path.Combine(resultsDir, resultsFile + ".json");
var resultsPath = Path.Combine(resultsDir, $"{resultsFile}.json");

if (!Directory.Exists(resultsDir))
{
Expand Down

0 comments on commit 2f9caf9

Please sign in to comment.