Skip to content

Commit

Permalink
Create coverage of PR #10 "quality-of-life" (c181dc7)
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Jun 23, 2023
1 parent 2de43c1 commit 11361e7
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 0 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html><head><meta name='viewport' content='width=device-width,initial-scale=1'><meta charset='UTF-8'><link rel='stylesheet' type='text/css' href='style.css'></head><body><h2>Coverage Report</h2><h4>Created: 2023-06-23 16:58</h4><p>Click <a href='http://clang.llvm.org/docs/SourceBasedCodeCoverage.html#interpreting-reports'>here</a> for information about interpreting this report.</p><div class='centered'><table><tr><td class='column-entry-bold'>Filename</td><td class='column-entry-bold'>Function Coverage</td><td class='column-entry-bold'>Line Coverage</td><td class='column-entry-bold'>Region Coverage</td><td class='column-entry-bold'>Branch Coverage</td></tr><tr class='light-row'><td><pre><a href='coverage/home/runner/work/pinned-init/pinned-init/src/__internal.rs.html'>__internal.rs</a></pre></td><td class='column-entry-yellow'><pre> 93.75% (15/16)</pre></td><td class='column-entry-yellow'><pre> 95.65% (88/92)</pre></td><td class='column-entry-yellow'><pre> 90.00% (27/30)</pre></td><td class='column-entry-red'><pre>- (0/0)</pre></td></tr><tr class='light-row'><td><pre><a href='coverage/home/runner/work/pinned-init/pinned-init/src/lib.rs.html'>lib.rs</a></pre></td><td class='column-entry-yellow'><pre> 80.00% (16/20)</pre></td><td class='column-entry-red'><pre> 62.50% (100/160)</pre></td><td class='column-entry-red'><pre> 52.63% (40/76)</pre></td><td class='column-entry-red'><pre>- (0/0)</pre></td></tr><tr class='light-row'><td><pre><a href='coverage/home/runner/work/pinned-init/pinned-init/src/macros.rs.html'>macros.rs</a></pre></td><td class='column-entry-green'><pre> 100.00% (6/6)</pre></td><td class='column-entry-green'><pre> 100.00% (32/32)</pre></td><td class='column-entry-green'><pre> 100.00% (8/8)</pre></td><td class='column-entry-red'><pre>- (0/0)</pre></td></tr><tr class='light-row-bold'><td><pre>Totals</pre></td><td class='column-entry-yellow'><pre> 88.10% (37/42)</pre></td><td class='column-entry-red'><pre> 77.46% (220/284)</pre></td><td class='column-entry-red'><pre> 65.79% (75/114)</pre></td><td class='column-entry-red'><pre>- (0/0)</pre></td></tr></table></div><h5>Generated by llvm-cov -- llvm version 16.0.5-rust-1.72.0-nightly</h5></body></html>
143 changes: 143 additions & 0 deletions coverage/c181dc7ebadc8da1f09d27f2a1ddc9f28c300c66/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
.red {
background-color: #ffd0d0;
}
.cyan {
background-color: cyan;
}
body {
font-family: -apple-system, sans-serif;
}
pre {
margin-top: 0px !important;
margin-bottom: 0px !important;
}
.source-name-title {
padding: 5px 10px;
border-bottom: 1px solid #dbdbdb;
background-color: #eee;
line-height: 35px;
}
.centered {
display: table;
margin-left: left;
margin-right: auto;
border: 1px solid #dbdbdb;
border-radius: 3px;
}
.expansion-view {
background-color: rgba(0, 0, 0, 0);
margin-left: 0px;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
border: 1px solid #dbdbdb;
border-radius: 3px;
}
table {
border-collapse: collapse;
}
.light-row {
background: #ffffff;
border: 1px solid #dbdbdb;
}
.light-row-bold {
background: #ffffff;
border: 1px solid #dbdbdb;
font-weight: bold;
}
.column-entry {
text-align: left;
}
.column-entry-bold {
font-weight: bold;
text-align: left;
}
.column-entry-yellow {
text-align: left;
background-color: #ffffd0;
}
.column-entry-yellow:hover {
background-color: #fffff0;
}
.column-entry-red {
text-align: left;
background-color: #ffd0d0;
}
.column-entry-red:hover {
background-color: #fff0f0;
}
.column-entry-green {
text-align: left;
background-color: #d0ffd0;
}
.column-entry-green:hover {
background-color: #f0fff0;
}
.line-number {
text-align: right;
color: #aaa;
}
.covered-line {
text-align: right;
color: #0080ff;
}
.uncovered-line {
text-align: right;
color: #ff3300;
}
.tooltip {
position: relative;
display: inline;
background-color: #b3e6ff;
text-decoration: none;
}
.tooltip span.tooltip-content {
position: absolute;
width: 100px;
margin-left: -50px;
color: #FFFFFF;
background: #000000;
height: 30px;
line-height: 30px;
text-align: center;
visibility: hidden;
border-radius: 6px;
}
.tooltip span.tooltip-content:after {
content: '';
position: absolute;
top: 100%;
left: 50%;
margin-left: -8px;
width: 0; height: 0;
border-top: 8px solid #000000;
border-right: 8px solid transparent;
border-left: 8px solid transparent;
}
:hover.tooltip span.tooltip-content {
visibility: visible;
opacity: 0.8;
bottom: 30px;
left: 50%;
z-index: 999;
}
th, td {
vertical-align: top;
padding: 2px 8px;
border-collapse: collapse;
border-right: solid 1px #eee;
border-left: solid 1px #eee;
text-align: left;
}
td pre {
display: inline-block;
}
td:first-child {
border-left: none;
}
td:last-child {
border-right: none;
}
tr:hover {
background-color: #f0f0f0;
}

0 comments on commit 11361e7

Please sign in to comment.