[R-pkg-devel] R CMD check halts on @example in shiny::runApp()

2018-11-19 Thread L Rutter
Hello all: R CMD check does not complete for my package and halts at the line "* checking examples ..." I suspect the halting is due to @examples hanging in certain R/foo.R files, where shiny::runApp() is called for a shiny app located in a separate directory in this type of format: appDir <- sys

Re: [R-pkg-devel] R CMD check halts on @example in shiny::runApp()

2018-11-19 Thread L Rutter
wser. This only makes sense in interactive modus, as your app needs input > from a user before it does anything. > > So for your shiny examples, you always have to use \dontrun{}. > Cheers > Joris > > On Mon, Nov 19, 2018 at 3:14 PM L Rutter wrote: >> >> Hello