check an R package tarball
tbcheck(
x,
error = "never",
args = "--no-build-vignettes",
convert = basename,
...
)
character(1) path to tarball
passed to rcmdcheck::rcmdcheck
passed to rcmdcheck::rcmdcheck
function that converts path to a package name
passed to rcmdcheck::rcmdcheck
writes objects [pname]_chk.rds
and [pname]_bcchk.rds
to disk
for later use
td = tempdir()
cur = getwd()
setwd(td)
pdy = system.file("demo_srcs/parody", package="BiocQE")
pkgbuild::build(pdy)
tbcheck(dir(patt="parody_"))
file.exists("parody_chk.rds")
setwd(cur)