Use drake_config() to create the config argument.

make_with_config(config = drake::read_drake_config())

Arguments

config

An input internal configuration list

Value

An output internal configuration list

See also

make(), drake_config()

Examples

# NOT RUN {
test_with_dir("Quarantine side effects.", {
load_basic_example() # Get the code with drake_example("basic").
# The following lines are the same as make(my_plan)
config <- drake_config(my_plan) # Create the internal config list.
make_with_config(config = config) # Run the project, build the targets.
})
# }