-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheck_cran.Rd
34 lines (33 loc) · 966 Bytes
/
check_cran.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/check_cran.R
\name{check_cran}
\alias{check_cran}
\title{Run all the package checks required by CRAN}
\usage{
check_cran(x = ".", quiet = FALSE)
}
\arguments{
\item{x}{Either a \code{checklist} object or a path to the source code.
Defaults to \code{.}.}
\item{quiet}{Whether to print check output during checking.}
}
\value{
A \code{checklist} object.
}
\description{
CRAN imposes an impressive list of tests on every package before publication.
This suite of test is available in every R installation.
Hence we use this full suite of tests too.
Notice that \code{check_package()} runs several additional tests.
}
\seealso{
Other package:
\code{\link{check_codemeta}()},
\code{\link{check_description}()},
\code{\link{check_documentation}()},
\code{\link{check_environment}()},
\code{\link{check_license}()},
\code{\link{check_package}()},
\code{\link{tidy_desc}()}
}
\concept{package}