ropensci / RNeXML

Implementing semantically rich NeXML I/O in R
https://docs.ropensci.org/RNeXML
Other
13 stars 9 forks source link

Update README.md #158

Closed stevenysw closed 7 years ago

stevenysw commented 7 years ago

add codecov badge

hlapp commented 7 years ago

I don't know whether I'm supposed to, but I can't actually see the report at https://codecov.io/github/ropensci/RNeXML?branch=master. This is different from other ROpenSci repos that seem to have Codecov enabled. I'm told I don't have access to the upload token, which seems odd, given that no access token should be needed from Travis CI.

hlapp commented 7 years ago

I think from the Travis log I see why this is:

$ Rscript -e 'covr::codecov()'
Error in loadNamespace(name) : there is no package called ‘covr’
Calls: :: ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted

@cboettig were you going to add that piece?

cboettig commented 7 years ago

@hlapp good call. @steven2249 we should have added the package covr to the Suggests list in the DESCRIPTION file: https://github.com/ropensci/RNeXML/blob/master/DESCRIPTION . That file documents all package dependencies, suggests are dependencies a user might not need but are required for testing. Travis will automatically install the packages listed there. Want to send a PR for that?