You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running devtools::check(args = c('--as-cran','--no-vignettes')) to check the package sjPlot I've just modified a minor thing, but I get
...
- installing the package to build vignettes
E creating vignettes (57.7s)
...
Error: processing vignette 'tab_bayes.Rmd' failed with diagnostics:
schannel: failed to receive handshake, SSL/TLS connection failed
--- failed re-building 'tab_bayes.Rmd'
...
Error: processing vignette 'tab_model_estimates.Rmd' failed with diagnostics:
there is no package called 'pscl'
--- failed re-building 'tab_model_estimates.Rmd'
...
Error: Vignette re-building failed.
Error in (function (command = NULL, args = character(), error_on_status = TRUE, :
System command error
Calls: <Anonymous> ... with_envvar -> force -> do.call -> <Anonymous> -> throw
Exited with status 1.
where the errors are mainly there is no package called '...'.
I understand that with the option --no-vignettes, R code in vignettes is not run so I cannot see why these errors are produced.
This issue seems to be related to #1667
The text was updated successfully, but these errors were encountered:
The error is happening when building the vignettes during R CMD build, before the R CMD check happens, so --no-vignettes has no effect. To disable vignettes completely you need to pass build_args = '--no-build-vignettes' as well.
But I think this is too much to ask people to know, so I have now added a vignette argument to check(), which will do both of these things for you.
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Jun 24, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am running
devtools::check(args = c('--as-cran','--no-vignettes'))
to check the packagesjPlot
I've just modified a minor thing, but I getwhere the errors are mainly
there is no package called '...'
.I understand that with the option
--no-vignettes
, R code in vignettes is not run so I cannot see why these errors are produced.This issue seems to be related to #1667
The text was updated successfully, but these errors were encountered: