Markdown report of reverse dependency check results from the cloud
Source:R/cloud.R
cloud_report.RdYou can use these functions to get intermediate reports of a running cloud check.
Usage
cloud_report(
job_name = cloud_job(pkg = pkg),
pkg = ".",
file = "",
all = FALSE,
results = NULL,
failures = TRUE
)
cloud_report_summary(
job_name = cloud_job(pkg = pkg),
file = "",
all = FALSE,
pkg = ".",
results = NULL
)
cloud_report_problems(
job_name = cloud_job(pkg = pkg),
pkg = ".",
file = "",
all = FALSE,
results = NULL
)
cloud_report_failures(
job_name = cloud_job(pkg = pkg),
pkg = ".",
file = "",
results = NULL
)
cloud_report_cran(job_name = cloud_job(pkg = pkg), pkg = ".", results = NULL)
cloud_report_checklist(
job_name = cloud_job(pkg = pkg),
pkg = ".",
results = NULL
)Arguments
- job_name
The job name, as returned by
cloud_check().- pkg
Path to package.
- file
File to write output to. Default will write to console.
- all
Whether to report all problems, including the ones that were already present in the old version of the package. This potentially generated a lot of output, most of which was irrelevant, so they are omitted by default, and only problems seen with the new version of the package are reported.
- results
Results from
cloud_results(). Expert use only.- failures
Save failures to disk?
See also
Other cloud:
cloud_broken(),
cloud_browse(),
cloud_cancel(),
cloud_check(),
cloud_details(),
cloud_fetch_results(),
cloud_plot(),
cloud_results(),
cloud_status(),
cloud_summary()