coverage
Here are 1,090 public repositories matching this topic...
-
Updated
Mar 29, 2022 - TypeScript
-
Updated
Apr 5, 2022 - Java
-
Updated
Jul 15, 2020 - JavaScript
-
Updated
Apr 5, 2022 - CMake
It would be helpful if the lcov generated reports could generate relative paths. My use case is that I am generating coverage reports from a docker image and then using VS Code Coverage Gutters which supports relative paths to view the coverage. But it doesn't work because the absolute paths on the docker c
-
Updated
Apr 3, 2022 - Ruby
-
Updated
Apr 4, 2022 - PHP
-
Updated
Mar 19, 2021 - JavaScript
-
Updated
Mar 11, 2022 - Rust
-
Updated
Apr 5, 2022 - Java
-
Updated
Nov 15, 2021 - C++
-
Updated
Dec 31, 2017 - PHP
-
Updated
Mar 16, 2022 - JavaScript
-
Updated
Feb 15, 2021 - Perl
-
Updated
Oct 11, 2021 - Groovy
undercover
should create warnings on entire files that weren't required by specs and hence don't show up in the lcov output.
This can be done by changing logic starting from Undercover::Report#load_and_parse_file
-
Updated
Apr 5, 2022 - CMake
-
Updated
Mar 23, 2022 - C++
-
Updated
Mar 28, 2022 - Ruby
-
Updated
Mar 18, 2022 - Nim
-
Updated
Apr 1, 2022 - PLSQL
-
Updated
Aug 11, 2020 - Shell
As for our project , we need more detail coverage data about every js file, so can you add the following info to classElement.
classElement.setAttribute("lines-covered", "" + file.getCodeLinesCoveredCount());
classElement.setAttribute("lines-valid", "" + file.getCodeLineCount());
classElement.setAttribute("branchs-covered", "" + file.getBranchesCoveredC
-
Updated
Apr 5, 2022 - F#
Improve this page
Add a description, image, and links to the coverage topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the coverage topic, visit your repo's landing page and select "manage topics."
We have a problem: if files aren't loaded/required we don't have branch data. If they are added through
track_files
we give it 0/0 branches which we show as 100% coverage (all possible branches are covered).That math is "wrong" though here because there are branches but we don't know what they are. We should probably count total branches here as "unkown" and establish that in our "math unive