From 1efb76bd76c373e0c3f8bf762782742468b368d6 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Wed, 4 May 2022 08:10:33 -0600 Subject: [PATCH] Fix missing output for daily stats test The missing output causes validation to fail. --- compass/ocean/tests/global_ocean/daily_output_test/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compass/ocean/tests/global_ocean/daily_output_test/__init__.py b/compass/ocean/tests/global_ocean/daily_output_test/__init__.py index 74c6704584..73e874ecc6 100644 --- a/compass/ocean/tests/global_ocean/daily_output_test/__init__.py +++ b/compass/ocean/tests/global_ocean/daily_output_test/__init__.py @@ -38,6 +38,9 @@ def __init__(self, test_group, mesh, init, time_integrator): module = self.__module__ step.add_output_file(filename='output.nc') + step.add_output_file( + filename='analysis_members/' + 'mpaso.hist.am.timeSeriesStatsDaily.0001-01-01.nc') step.add_namelist_file(module, 'namelist.forward') step.add_streams_file(module, 'streams.forward') self.add_step(step)