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
This solves the problem of supporting early vs. deferred failure: currently, all steps of a stage are run even if some steps fail, but this doesn't make sense in deployment scenarios. Switching to early failure everywhere is much easier and more consistent with user's expectation.
We can then think of supporting the opposite: defining a "keep going" switch that enables deferred failure:
get_stage("script") %>%
set_keep_going() %>%
# Run R CMD check
step_rcmdcheck() %>%
# lint the R source code
step_lint() %>%
# lint the documentation web page
step_weblint()
Need a better name for it.
The text was updated successfully, but these errors were encountered: