
check
automatically builds a package before using
R CMD check
as this is the recommended way to
check packages. Note that this process runs in an
independent realisation of R, so nothing in your current
workspace will affect the process.check(pkg = ".", document = TRUE,
doc_clean = getOption("devtools.cleandoc"),
cleanup = TRUE, cran = TRUE, check_version = FALSE,
force_suggests = TRUE, args = NULL, quiet = FALSE)
as.package
for more informationTRUE
(the default), will update
and check documentation before running formal check.TRUE
the check directory is
removed if the check is successful - this allows you to
inspect the results to figure out what went wrong. If
FALSE
the check directory is never removed.TRUE
(the default), check using the
same settings as CRAN uses.TRUE
, will delete all files in
the man
directory and regenerate them from scratch
with roxygen. The default is to use the value of the
"devtools.cleandoc"
option.TRUE
, check that the new
version is greater than the current version on CRAN, by
setting the _R_CHECK_CRAN_INCOMING_
environment
variable to TRUE
.FALSE
, don't force
suggested packages, by setting the
_R_CHECK_FORCE_SUGGESTS_
environment variable to
FALSE
.R CMD
check
.TRUE
suppresses output from this
function.compiler_flags(FALSE)
. Devtools specific checks will be run after the R
CMD check
.