mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-29 03:00:45 -04:00
* Revdep check. 719 - CRAN, 117 - BioConductor; 0 new problems; 3 failed to check * fix last few install failures. 836 pass. 0 untested. 0 failures. * add revdep script
10 lines
461 B
R
10 lines
461 B
R
|
|
# revdepcheck::revdep_reset()
|
|
|
|
# maximize output width
|
|
options(width = as.numeric(system2("tput", "cols", stdout = TRUE)) - 10)
|
|
revdepcheck::revdep_check(pkgload::pkg_path("."), num_workers = detectCores() - 2, bioc = TRUE, timeout = as.difftime(30, units = "mins"))
|
|
|
|
# save cran comments to a file
|
|
cat(file = file.path(pkgload::pkg_path("."), "revdep", "revdep-cran-comments.md"), paste0(collapse = "\n", capture.output({revdepcheck::revdep_report_cran()})))
|