We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eab7d7 commit 22a7aefCopy full SHA for 22a7aef
fontspector-cli/src/main.rs
@@ -143,12 +143,18 @@ fn main() {
143
.collect();
144
145
let worst_status = worst_status(&results);
146
-
147
- // Organise results by testable and sectionname
148
let organised_results = organize(results);
149
+ let mut reporters: Vec<Box<dyn Reporter>> = vec![];
+ if !args.quiet {
150
+ reporters.push(Box::new(TerminalReporter {}));
151
+ }
152
+
153
+ for reporter in reporters {
154
+ reporter.report(&organised_results, &args, ®istry);
155
156
157
if !args.quiet {
- TerminalReporter {}.report(&organised_results, &args, ®istry);
158
// Summary report
159
let summary = summary_results(organised_results);
160
print!("\nSummary:\n ");
0 commit comments