|
14 | 14 | TEST_SPECIFICS: Dict[str, Any] = { |
15 | 15 | "diags_environment_commands": "source <INSERT PATH TO CONDA>/conda.sh; conda activate <INSERT ENV NAME>", |
16 | 16 | "global_time_series_environment_commands": "source <INSERT PATH TO CONDA>/conda.sh; conda activate <INSERT ENV NAME>", |
17 | | - "tests_to_run": [ |
| 17 | + "cfgs_to_run": [ |
18 | 18 | "weekly_bundles", |
19 | 19 | "weekly_comprehensive_v2", |
20 | 20 | "weekly_comprehensive_v3", |
21 | 21 | "weekly_legacy_3.0.0_bundles", |
22 | 22 | "weekly_legacy_3.0.0_comprehensive_v2", |
23 | 23 | "weekly_legacy_3.0.0_comprehensive_v3", |
24 | 24 | ], |
25 | | - "sets_to_run": ["e3sm_diags", "mpas_analysis", "global_time_series", "ilamb"], |
| 25 | + "tasks_to_run": ["e3sm_diags", "mpas_analysis", "global_time_series", "ilamb"], |
26 | 26 | "unique_id": "unique_id", |
27 | 27 | } |
28 | 28 |
|
@@ -139,19 +139,19 @@ def get_expansions(): |
139 | 139 | expansions["active_mpas_analysis"] = "False" |
140 | 140 | expansions["active_global_time_series"] = "False" |
141 | 141 | expansions["active_ilamb"] = "False" |
142 | | - if "e3sm_diags" in TEST_SPECIFICS["sets_to_run"]: |
| 142 | + if "e3sm_diags" in TEST_SPECIFICS["tasks_to_run"]: |
143 | 143 | expansions["active_e3sm_diags"] = "True" |
144 | | - if "mpas_analysis" in TEST_SPECIFICS["sets_to_run"]: |
| 144 | + if "mpas_analysis" in TEST_SPECIFICS["tasks_to_run"]: |
145 | 145 | expansions["active_mpas_analysis"] = "True" |
146 | | - if "global_time_series" in TEST_SPECIFICS["sets_to_run"]: |
| 146 | + if "global_time_series" in TEST_SPECIFICS["tasks_to_run"]: |
147 | 147 | expansions["active_global_time_series"] = "True" |
148 | 148 | expansions["active_mpas_analysis"] = "True" # For ocn plots |
149 | 149 | expansions["active_e3sm_to_cmip"] = "True" # For lnd plots |
150 | | - if "ilamb" in TEST_SPECIFICS["sets_to_run"]: |
| 150 | + if "ilamb" in TEST_SPECIFICS["tasks_to_run"]: |
151 | 151 | expansions["active_ilamb"] = "True" |
152 | 152 | expansions["active_e3sm_to_cmip"] = "True" |
153 | | - expansions["tests_to_run"] = TEST_SPECIFICS["tests_to_run"] |
154 | | - expansions["sets_to_run"] = TEST_SPECIFICS["sets_to_run"] |
| 153 | + expansions["cfgs_to_run"] = TEST_SPECIFICS["cfgs_to_run"] |
| 154 | + expansions["tasks_to_run"] = TEST_SPECIFICS["tasks_to_run"] |
155 | 155 |
|
156 | 156 | expansions["diagnostics_base_path"] = config.get("diagnostics", "base_path") |
157 | 157 | expansions["machine"] = machine |
@@ -267,10 +267,10 @@ def generate_cfgs(unified_testing=False, dry_run=False): |
267 | 267 | "weekly_legacy_3.0.0_comprehensive_v2", |
268 | 268 | "weekly_legacy_3.0.0_comprehensive_v3", |
269 | 269 | ] |
270 | | - if TEST_SPECIFICS["tests_to_run"] == []: |
| 270 | + if TEST_SPECIFICS["cfgs_to_run"] == []: |
271 | 271 | cfg_names = full_list_cfg_names |
272 | 272 | else: |
273 | | - cfg_names = TEST_SPECIFICS["tests_to_run"] |
| 273 | + cfg_names = TEST_SPECIFICS["cfgs_to_run"] |
274 | 274 | for cfg_name in cfg_names: |
275 | 275 | cfg_template = f"{git_top_level}/tests/integration/template_{cfg_name}.cfg" |
276 | 276 | cfg_generated = ( |
|
0 commit comments