Skip to content

You 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)

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?