diff --git a/compass/ocean/tests/hurricane/configure.py b/compass/ocean/tests/hurricane/configure.py index 4f0db8eff9..680b377b9f 100644 --- a/compass/ocean/tests/hurricane/configure.py +++ b/compass/ocean/tests/hurricane/configure.py @@ -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, +) def configure_hurricane(test_case, mesh): @@ -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) diff --git a/compass/ocean/tests/hurricane/hurricane.cfg b/compass/ocean/tests/hurricane/hurricane.cfg new file mode 100644 index 0000000000..7940fde3bc --- /dev/null +++ b/compass/ocean/tests/hurricane/hurricane.cfg @@ -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