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

getdozer / dozer / 5960793671

24 Aug 2023 07:31AM UTC coverage: 76.217% (+0.5%) from 75.706%
5960793671

push

github

web-flow
chore: Add `PipelineContract` type alias (#1904)

46996 of 61661 relevant lines covered (76.22%)

42184.67 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