I build my R package using --no-build-vignettes
because the vignette takes very long to run. Hence, I also want to avoid that "R CMD Check " checks for the vignette re-build.
I tried to use --no-check-vignettes
. However this gets ignored (not sure if it exists at all).
Another reason to ignore my vignette is the fact that I get in trouble on Travis CI because this step exceeds 10 mins (which causes the build to abort).
Is there a way to avoid the building and checking of vignettes of an R package? (Besides setting all vignette chunks to eval = FALSE
)