covr erroronious reports 0.00% coverage

For some reason covr::report() is reporting 0.00% coverage when ran, covr used to report > 93% I am not sure what has changed. My code can be found here

Reprex while working in the project directory

"covr::report()"
#> [1] "covr::report()"

Created on 2025-07-08 with reprex v2.1.1

Output: 0.00% testing coverage reported.

Expected results: a report with greater than 0.00% testing coverage.

Why do you have quotes around covr::report()? This will not execute the function but will be interpreted as a character string.

1 Like