Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lfric_macros/apply_macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,11 @@ def apps_to_upgrade(self) -> list[Path]:
for app_path in apps_list:
# Ignore lfric_coupled_rivers as this is based on Jules-standalone
# metadata which is not currently available
if "fcm_make" in str(app_path) or "lfric_coupled_rivers" in str(app_path):
if (
"fcm_make" in str(app_path)
or "lfric_coupled_rivers" in str(app_path)
or "coupled_rivers" in str(app_path)
):
continue
if not app_path.is_dir():
continue
Expand Down
1 change: 1 addition & 0 deletions lfric_macros/validate_rose_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"fcm_make_ocean",
"fcm_make_river",
"lfric_coupled_rivers",
"coupled_rivers",
]


Expand Down
Loading