make()
, or
(2) were being built if the last make()
quit unexpectedly.R/progress.R
Similar to progress()
.
in_progress(path = getwd(), search = TRUE, cache = drake::get_cache(path = path, search = search, verbose = verbose), verbose = drake::default_verbose())
path | Root directory of the drake project,
or if |
---|---|
search | logical. If |
cache | drake cache. See |
verbose | logical or numeric, control printing to the console.
Use
|
A character vector of target names.
diagnose()
, session()
,
built()
, imported()
,
readd()
, drake_plan()
, make()
# NOT RUN { test_with_dir("Quarantine side effects.", { load_basic_example() # Get the code with drake_example("basic"). make(my_plan) # Kill before targets finish. # If you interrupted make(), some targets will probably be listed: in_progress() }) # }