do_package_checks()
adds default steps related to package checks
to the "before_install"
, "install"
, "script"
and "after_success"
stages:
step_install_deps()
in the "install"
stage, using the
repos
argument.
step_rcmdcheck()
in the "script"
stage, using the
warnings_are_errors
, notes_are_errors
, args
, and
build_args
arguments.
A call to covr::codecov()
in the "after_success"
stage
(only if the codecov
flag is set)
do_package_checks(..., codecov = !ci_is_interactive(),
warnings_are_errors = NULL, notes_are_errors = NULL, args = NULL,
build_args = NULL, error_on = "warning", repos = repo_default(),
timeout = Inf)
Ignored, used to enforce naming of arguments.
[flag]
Whether to include a step running
covr::codecov(quiet = FALSE)
(default: only for non-interactive CI,
see ci_is_interactive()
).
[flag]
Deprecated, use error_on
.
[flag]
Deprecated, use error_on
.
[character]
Passed to rcmdcheck::rcmdcheck()
.
Default for Travis and local runs: c("--no-manual", "--as-cran")
.
Default for Appveyor:
c("--no-manual", "--as-cran", "--no-vignettes", "--no-build-vignettes", "--no-multiarch")
.
[character]
Passed to rcmdcheck::rcmdcheck()
.
Default for Travis and local runs: "--force"
.
Default for Appveyor: c("--no--build-vignettes", "--force")
.
[character]
Whether to throw an error on R CMD check failures. Note that the check is
always completed (unless a timeout happens), and the error is only thrown
after completion. If "never", then no errors are thrown. If "error", then
only ERROR failures generate errors. If "warning", then WARNING failures
generate errors as well. If "note", then any check failure generated an
error.
[character]
Passed to rcmdcheck::rcmdcheck()
, default:
repo_default()
.
[numeric]
Passed to rcmdcheck::rcmdcheck()
, default:
Inf
.
Other macros: do_bookdown
,
do_pkgdown
# NOT RUN {
dsl_init()
do_package_checks()
dsl_get()
# }
Run the code above in your browser using DataLab