covr icon indicating copy to clipboard operation
covr copied to clipboard

Test coverage reports for R

Results 91 covr issues
Sort by recently updated
recently updated
newest added

Hi, Tom from Codecov here. I noticed an uptick in our `R` code coverage, and I wanted to introduce myself and see what I can do to help. I am...

http://covr.r-lib.org/CODE_OF_CONDUCT.html returns a 404.

I use `covr::package_coverage()` to get the coverage of [this](https://github.com/mjakubczak/FutureManager) package. Everything worked properly, the coverage was ~88% and the output was correct: ``` > covr::package_coverage() FutureManager Coverage: 88.16% R/main.R: 84.62%...

It would be super helpful if, in addition to the srcrefs of the code that gets executed by each test, we could also record the srcrefs of the unit tests...

Hi there, first of all thanks for this cool package that I use in my azure build pipelines all the time. Since upgrading testthat to the 3rd edition and making...

The function `parse_gcov` tries to skip all files for which `source_file` is not below root `package_path`. It does that by using a regular expression. https://github.com/r-lib/covr/blob/ebf0e7fc215ef91aeeb43ffcbe945e116e6e0187/R/compiled.R#L14 However, `rex::regex` assumes that the...

Hi Jim, I'm trying to get covr to work for my C/C++ based package (https://github.com/SebKrantz/collapse) and facing difficulties which I'm not sure how to solve. I ran `package_coverage(quiet = FALSE,...

Hi! I'm interested in combining using covr with tools that consume LCOV text files. Here's a description of the format: https://www.systutorials.com/docs/linux/man/1-geninfo/ FWIW, this is a format supported by codecov too:...