• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

getdozer / dozer / 5817493417

pending completion
5817493417

Pull #1839

github

aaryaattrey
merge fn
Pull Request #1839: load config from stdin

27 of 27 new or added lines in 2 files covered. (100.0%)

45551 of 59106 relevant lines covered (77.07%)

39600.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/dozer-cli/src/console_helper.rs
1
pub fn get_colored_text(text: &str, color_code: &str) -> String {
×
2
    let mut result = String::from("\u{1b}[");
×
3
    result.push_str(color_code);
×
4
    result.push_str(";1m"); // End token.
×
5
    result.push_str(text);
×
6
    result.push_str("\u{1b}[0m");
×
7
    result
×
8
}
×
9

10
pub const RED: &str = "31";
11
pub const GREEN: &str = "32";
12
pub const PURPLE: &str = "35";
13
pub const YELLOW: &str = "136";
14
pub const GREY: &str = "250";
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc