Use drake_config()
to create the config
argument.
make_with_config(config = drake::read_drake_config())
config | An input internal configuration list |
---|
An output internal configuration list
# 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. }) # }