tic icon indicating copy to clipboard operation
tic copied to clipboard

Opt-in for deferred failure

Open krlmlr opened this issue 6 years ago • 1 comments

get_stage("script") %>%
  set_keep_going() %>% # do not stop if a certain step errors down the line

  # Run R CMD check
  step_rcmdcheck() %>%

  # lint the R source code
  step_lint() %>%

  # lint the documentation web page
  step_weblint()

krlmlr avatar Jun 28 '18 08:06 krlmlr

Would it be more consistent to support this via an arg keep_going across all funs? (yeah, lots of work)

set_keep_going() is somewhat standalone compared to the add_, do_ or get_ patterns.

pat-s avatar Jan 23 '20 21:01 pat-s