Skip to content

Commit

Permalink
Merge pull request #861 from bmooremaley/combine-topo-to-cubedsphere
Browse files Browse the repository at this point in the history
Added `cubed_sphere` target grid test to `utility/combine_topo`
  • Loading branch information
xylar authored Jan 11, 2025
2 parents 7948899 + 5b42aa2 commit ed88baa
Show file tree
Hide file tree
Showing 5 changed files with 593 additions and 190 deletions.
5 changes: 4 additions & 1 deletion compass/ocean/tests/utility/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ def __init__(self, mpas_core):
"""
super().__init__(mpas_core=mpas_core, name='utility')

self.add_test_case(CombineTopo(test_group=self))
for target_grid in ['lat_lon', 'cubed_sphere']:
self.add_test_case(
CombineTopo(test_group=self, target_grid=target_grid),
)
self.add_test_case(CullRestarts(test_group=self))
self.add_test_case(ExtrapWoa(test_group=self))
self.add_test_case(CreateSalinRestoring(test_group=self))
Loading

0 comments on commit ed88baa

Please sign in to comment.