|
7 | 7 | repositories defined by |
8 | 8 | [`frequenz.repo.config.RepositoryType`][frequenz.repo.config.RepositoryType]. |
9 | 9 |
|
10 | | -The `actor_config`, `api_config`, `app_config`, and `lib_config` variables are the |
11 | | -default configurations for libraries, APIs, actors and applications, respectively. The |
12 | | -`common_config` variable is the default configuration for all types of repositories. |
| 10 | +The `actor_config`, `api_config`, `app_config`, `lib_config`, and `model_config` |
| 11 | +variables are the default configurations for libraries, APIs, actors and applications, |
| 12 | +respectively. The `common_config` variable is the default configuration for all types of |
| 13 | +repositories. |
13 | 14 |
|
14 | | -The `actor_command_options`, `api_command_options`, `app_command_options`, and |
15 | | -`lib_command_options` variables are the default command-line options for the same types |
16 | | -of repositories, and the `common_command_options` variable is the default command-line |
17 | | -options for all types of repositories. |
| 15 | +The `actor_command_options`, `api_command_options`, `app_command_options`, |
| 16 | +`lib_command_options`, and `model_command_options` variables are the default |
| 17 | +command-line options for the same types of repositories, and the |
| 18 | +`common_command_options` variable is the default command-line options for all types of |
| 19 | +repositories. |
18 | 20 |
|
19 | 21 | They can be modified before being passed to |
20 | 22 | [`nox.configure()`][frequenz.repo.config.nox.configure] by using the |
|
109 | 111 |
|
110 | 112 | lib_config: _config.Config = common_config.copy() |
111 | 113 | """Default configuration for libraries.""" |
| 114 | + |
| 115 | +model_command_options: _config.CommandsOptions = common_command_options.copy() |
| 116 | +"""Default command-line options for models.""" |
| 117 | + |
| 118 | +model_config: _config.Config = common_config.copy() |
| 119 | +"""Default configuration for models.""" |
0 commit comments