pac_checkred {pacs} | R Documentation |
Checking the R CRAN package check page status
Description
using package R CRAN check page to validate if there are ANY errors and/or fails and/or warnings and/or notes.
Usage
pac_checkred(pac, scope = c("ERROR", "FAIL"), flavors = NULL)
Arguments
pac |
|
scope |
|
flavors |
|
Value
logical
if the package fail under specified criteria.
Note
Results are cached for 30 minutes with memoise
package.
If you need to check many packages at once then is recommended usage of pacs::checked_packages
.
The used repository https://cran.rstudio.com/
.
Please as a courtesy to the R CRAN, don't overload their server by constantly using this function.
Examples
## Not run:
pacs::pac_checkred("dplyr")
pacs::pac_checkred("dplyr", scope = c("ERROR"))
pacs::pac_checkred("dplyr",
scope = c("ERROR", "FAIL", "WARN"),
flavors = pacs::match_flavors()
)
## End(Not run)