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.
2 parents 580c96b + 3bae42a commit be95966Copy full SHA for be95966
src/lib.rs
@@ -575,7 +575,9 @@ pub fn run(input: Input, config: &Config) -> Summary {
575
576
if report.has_warnings() {
577
match term::stderr() {
578
- Some(ref t) if isatty() && t.supports_color() => {
+ Some(ref t)
579
+ if isatty() && t.supports_color() && t.supports_attr(term::Attr::Bold) =>
580
+ {
581
match report.print_warnings_fancy(term::stderr().unwrap()) {
582
Ok(..) => (),
583
Err(..) => panic!("Unable to write to stderr: {}", report),
0 commit comments