r-lib / revdepcheck

R package reverse dependency checking
https://revdepcheck.r-lib.org
Other
99 stars 31 forks source link

Include successful revdeps in the README report somewhere #238

Closed colearendt closed 4 years ago

colearendt commented 4 years ago

Use case: ran revdeps successfully locally, and then one fails on CRAN.

It would be nice to have a record of successful revdeps in the README / reports somewhere as a record of the revdep process having been executed and the results being successful. It would also provide the added benefit of being able to sanity check quickly what issues, if any, were seen locally.

gaborcsardi commented 4 years ago

All the results are in a database, that you can look at later, either by generating the report, or using revdep_summary(), revdep_details(), etc.

colearendt commented 4 years ago

Thanks! Yes, revdep_details() is gold. Would you be amenable to a revdep_success() function that generates a success.md or something like that? My concern was mostly for publicity w/o having to commit / track the database.

hadley commented 4 years ago

I think our assumption is that if it didn't fail or break, it succeeded. But maybe we could include a list of all successful packages (space delimited) at the bottom of the README?

hadley commented 4 years ago

Actually we already have a way to do this: call revdep_report_summary(all = TRUE)