Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue with convert_culled_mesh_to_cdf5 for hurricane test case #726

Merged
merged 4 commits into from
Nov 8, 2023
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: 4 additions & 2 deletions compass/ocean/tests/hurricane/configure.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from compass.ocean.tests.global_ocean.metadata import \
get_author_and_email_from_git
from compass.ocean.tests.global_ocean.metadata import (
get_author_and_email_from_git,
)


xylar marked this conversation as resolved.
Show resolved Hide resolved
def configure_hurricane(test_case, mesh):
Expand All @@ -17,6 +18,7 @@ def configure_hurricane(test_case, mesh):
config = test_case.config

config.add_from_package('compass.mesh', 'mesh.cfg')
config.add_from_package('compass.ocean.tests.hurricane', 'hurricane.cfg')
config.add_from_package(mesh.package, mesh.mesh_config_filename,
exception=True)

Expand Down
6 changes: 6 additions & 0 deletions compass/ocean/tests/hurricane/hurricane.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# options for spherical meshes
[spherical_mesh]

# Config options related to the step for culling land from the mesh
# Whether to convert the culled mesh file to CDF5 format
convert_culled_mesh_to_cdf5 = False
Loading