Closed rafapereirabr closed 5 years ago
It seems that the results of the tests are not being uploaded. Try to call covr::codecov()
with the argument token
, to indicate where the results will be stored in the Codecov webpage. If you do not have the token, just login into Codecov and click in Settings, in the right top. I know that is also possible to have a codecov.yml
in the root directory of the package to avoid passing the token, but I have never tried to do so.
Thanks, Pedro! It worked like a charm :)
# check package coverage
geobr_cov <- package_coverage()#clean=T, function_exclusions="read_statistical_grid")
# update package coverage
covr::codecov( coverage= geobr_cov, token ='xxx-xxxx-xxxx-xxxx-xxxx' )
Hi @pedro-andrade-inpe , I've followed your suggestion and started adding some tests files to check the consistency of
geobr
. As of right now, thegeobr
is hitting 73.07%. However, thecodecov
shield included in theREADME.md
file still shows 49%. Do you know how we can update the info the shield?