Adding tests to R and R Packages #10
elimillera
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Base R
https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Testing-a-Unix_002dalike-Installation
Installing tests in R packages
Include the following as an argument in your
install.packages
call:**INSTALL_opts = '--install-tests'**
. For example:install.packages('dplyr', INSTALL_opts = '--install-tests')
Beta Was this translation helpful? Give feedback.
All reactions