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

samsmithnz / RepoGovernance / 3698583703

pending completion
3698583703

Pull #279

github

GitHub
Merge 8f5f89998 into 94493f39c
Pull Request #279: Update all

118 of 202 branches covered (58.42%)

Branch coverage included in aggregate %.

390 of 543 relevant lines covered (71.82%)

6.37 hits per line

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

78.57
/src/RepoGovernance.Core/Models/CoverallsCodeCoverage.cs
1
namespace RepoGovernance.Core.Models
2
{
3
    public class CoverallsCodeCoverage
4
    {
5
        public string? branch { get; set; }
18✔
6
        public string? repo_name { get; set; }
18✔
7
        public string? badge_url { get; set; }
18✔
8
        public double coverage_change { get; set; }
20✔
9
        public double covered_percent { get; set; }
18✔
10
        public string coverage_change_string
11
        {
12
            get
13
            {
1✔
14
                if (coverage_change < 0)
1!
15
                {
×
16
                    return "-" + coverage_change.ToString("0");
×
17
                }
18
                else
19
                {
1✔
20
                    return "+" + coverage_change.ToString("0");
1✔
21
                }
22
            }
1✔
23
            }
24
        }
25
    }
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

© 2025 Coveralls, Inc