check_dev_rev_deps {checked} | R Documentation |
Run reverse dependency checks against a development version only
Description
check_dev_rev_deps()
works similarly to check_rev_deps()
but it runs
R CMD check only once for each package, with the development version of the
package installed. It is advantageous to check whether adding a new package
into a repository breaks existing packages that possibly take said package
as a Suggests
dependency.
Usage
check_dev_rev_deps(
path,
n = 2L,
output = tempfile(paste(utils::packageName(), Sys.Date(), sep = "-")),
lib.loc = .libPaths(),
repos = getOption("repos"),
restore = options::opt("restore"),
reporter = reporter_default(),
...
)
Arguments
path |
file path to the package source directory |
n |
|
output |
|
lib.loc |
|
repos |
|
restore |
|
reporter |
A reporter to provide progress updates. Will default to the most expressive command-line reporter given your terminal capabilities. |
... |
Additional arguments passed to |
Value
check_design()
R6 class storing all the details
regarding checks that run. Can be combined with
results
and summary()
methods to generate results.
See Also
Other checks:
check_design
,
check_dir()
,
check_pkgs()
,
check_rev_deps()
,
new_check_design()