Skip to content

Commit 77a5166

Browse files
add exclusion (#246)
* add exclusion * update apply_macros
1 parent 85e5171 commit 77a5166

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

lfric_macros/apply_macros.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,11 @@ def apps_to_upgrade(self) -> list[Path]:
10921092
for app_path in apps_list:
10931093
# Ignore lfric_coupled_rivers as this is based on Jules-standalone
10941094
# metadata which is not currently available
1095-
if "fcm_make" in str(app_path) or "lfric_coupled_rivers" in str(app_path):
1095+
if (
1096+
"fcm_make" in str(app_path)
1097+
or "lfric_coupled_rivers" in str(app_path)
1098+
or "coupled_rivers" in str(app_path)
1099+
):
10961100
continue
10971101
if not app_path.is_dir():
10981102
continue

lfric_macros/validate_rose_meta.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"fcm_make_ocean",
4141
"fcm_make_river",
4242
"lfric_coupled_rivers",
43+
"coupled_rivers",
4344
]
4445

4546

0 commit comments

Comments
 (0)