From 295544e5c5a78b1686af767be1bfc270aa54cca3 Mon Sep 17 00:00:00 2001 From: Oliver Elbert Date: Wed, 3 Jan 2024 11:24:13 -0500 Subject: [PATCH] missed one --- driver/tests/mpi/test_restart.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/driver/tests/mpi/test_restart.py b/driver/tests/mpi/test_restart.py index 5c2ccde9..92c6f72b 100644 --- a/driver/tests/mpi/test_restart.py +++ b/driver/tests/mpi/test_restart.py @@ -11,6 +11,7 @@ import pace.util from pace.driver import DriverConfig from pace.driver.state import DriverState +from pace.physics import PHYSICS_PACKAGES # The packages we import will import MPI, causing an MPI init, but we don't actually @@ -65,6 +66,7 @@ def test_restart(): damping_coefficients=damping_coefficients, driver_grid_data=driver_grid_data, grid_data=grid_data, + schemes=[PHYSICS_PACKAGES["GFS_microphysics"]], ) assert isinstance(driver_state, DriverState)