chore: fix current status, all implemented features and refactors

This commit is contained in:
Sergey Penkovsky
2025-08-06 22:35:49 +03:00
parent ea39b9d0e1
commit 3da71674d4
3 changed files with 46 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
import 'dart:math';
import 'package:benchmark_cherrypick/cli/report/markdown_report.dart';
import '../scenarios/universal_chain_module.dart';
import 'report/pretty_report.dart';
import 'report/csv_report.dart';
@@ -70,6 +72,7 @@ class BenchmarkCliRunner {
'pretty': PrettyReport(),
'csv': CsvReport(),
'json': JsonReport(),
'markdown': MarkdownReport(),
};
print(reportGenerators[config.format]?.render(results) ?? PrettyReport().render(results));
}