drake_config()
list from the last make()
.R/read.R
See drake_config()
for more information
about drake's internal runtime configuration parameter list.
read_drake_config(path = getwd(), search = TRUE, cache = NULL, verbose = drake::default_verbose(), jobs = 1, envir = parent.frame())
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
|
jobs | number of jobs for light parallelism. Supports 1 job only on Windows. |
envir | Optional environment to fill in if
|
The cached master internal configuration list
of the last make()
.
# NOT RUN { test_with_dir("Quarantine side effects.", { load_basic_example() # Get the code with drake_example("basic"). make(my_plan) # Run the project, build the targets. # Retrieve the master internal configuration list from the cache. read_drake_config() }) # }