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

TyRoXx / NonlocalityOS / 14810716964

03 May 2025 12:09PM UTC coverage: 72.986% (-0.03%) from 73.014%
14810716964

Pull #233

github

web-flow
Merge d87ab7f90 into c3182e417
Pull Request #233: Document how to enable sccache logging

256 of 277 new or added lines in 12 files covered. (92.42%)

3 existing lines in 3 files now uncovered.

3053 of 4183 relevant lines covered (72.99%)

2264.89 hits per line

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

77.78
/lambda/src/standard_library.rs
1
use astraea::tree::{BlobDigest, Tree, TreeBlob};
2

3
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
4
pub struct ConsoleOutput {
5
    pub message: BlobDigest,
6
}
7

8
impl ConsoleOutput {
9
    pub fn to_tree(&self) -> Tree {
2✔
10
        Tree::new(TreeBlob::empty(), vec![self.message])
2✔
11
    }
12

13
    pub fn from_tree(tree: &Tree) -> Option<ConsoleOutput> {
1✔
14
        if tree.blob().len() != 0 {
1✔
UNCOV
15
            return None;
×
16
        }
17
        if tree.references().len() != 1 {
1✔
18
            return None;
×
19
        }
20
        Some(ConsoleOutput {
1✔
21
            message: tree.references()[0],
1✔
22
        })
23
    }
24
}
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