|
7 | 7 | repositories defined by |
8 | 8 | [`frequenz.repo.config.RepositoryType`][frequenz.repo.config.RepositoryType]. |
9 | 9 |
|
10 | | -The `lib_config`, `api_config`, `actor_config` and `app_config` |
11 | | -variables are the default configurations for libraries, APIs, actors and |
12 | | -applications, respectively. The `common_config` variable is the default |
13 | | -configuration for all types of repositories. |
| 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. |
14 | 13 |
|
15 | | -The `lib_command_options`, `api_command_options`, `actor_command_options` and |
16 | | -`app_command_options` variables are the default command-line options for the same |
17 | | -types of repositories, and the `common_command_options` variable is the default |
18 | | -command-line options for all types of repositories. |
| 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. |
19 | 18 |
|
20 | 19 | They can be modified before being passed to |
21 | 20 | [`nox.configure()`][frequenz.repo.config.nox.configure] by using the |
|
76 | 75 | ) |
77 | 76 | """Default configuration for all types of repositories.""" |
78 | 77 |
|
79 | | -lib_command_options: _config.CommandsOptions = common_command_options.copy() |
80 | | -"""Default command-line options for libraries.""" |
| 78 | +actor_command_options: _config.CommandsOptions = common_command_options.copy() |
| 79 | +"""Default command-line options for actors.""" |
81 | 80 |
|
82 | | -lib_config: _config.Config = common_config.copy() |
83 | | -"""Default configuration for libraries.""" |
| 81 | +actor_config: _config.Config = common_config.copy() |
| 82 | +"""Default configuration for actors.""" |
84 | 83 |
|
85 | 84 | api_command_options: _config.CommandsOptions = common_command_options.copy() |
86 | 85 | """Default command-line options for APIs.""" |
|
99 | 98 | and `extra_paths` replacing `"tests"` with `"pytests"`. |
100 | 99 | """ |
101 | 100 |
|
102 | | -actor_command_options: _config.CommandsOptions = common_command_options.copy() |
103 | | -"""Default command-line options for actors.""" |
104 | | - |
105 | | -actor_config: _config.Config = common_config.copy() |
106 | | -"""Default configuration for actors.""" |
107 | | - |
108 | 101 | app_command_options: _config.CommandsOptions = common_command_options.copy() |
109 | 102 | """Default command-line options for applications.""" |
110 | 103 |
|
111 | 104 | app_config: _config.Config = common_config.copy() |
112 | 105 | """Default configuration for applications.""" |
| 106 | + |
| 107 | +lib_command_options: _config.CommandsOptions = common_command_options.copy() |
| 108 | +"""Default command-line options for libraries.""" |
| 109 | + |
| 110 | +lib_config: _config.Config = common_config.copy() |
| 111 | +"""Default configuration for libraries.""" |
0 commit comments