check_downstream | R Documentation |
Installs downstream R packages as specified in a
dependency_structure
object and then runs
rcmdcheck
(R CMD check
) on the downstream dependencies.
check_downstream(
dep_structure,
distance = NULL,
check_args = c("--no-multiarch", "--with-keep.source", "--install-tests"),
only_tests = FALSE,
install_external_deps = TRUE,
upgrade = "never",
package_list = NULL,
dry = FALSE,
verbose = 1,
...
)
dep_structure |
( |
distance |
( |
check_args |
( |
only_tests |
( |
install_external_deps |
logical to describe whether to install
external dependencies of package using |
upgrade |
argument passed to |
package_list |
( |
dry |
( |
verbose |
( |
... |
Arguments passed on to
|
data.frame
of performed actions
## Not run:
x <- dependency_table(project = ".", verbose = 1)
check_downstream(x, verbose = 1)
check_downstream(x, verbose = 1, only_test = TRUE, check_args = c("--no-manual"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.