After ACCESS-OM2 2026.02.000 deployment with ACCESS-NRI/cice5#72, the sync userscript is not required:
|
def test_sync_userscript_ice_concatenation(self, config): |
|
# This script runs in the sync pbs job before syncing output to a |
|
# remote location |
|
script = "/g/data/vk83/apps/om2-scripts/concatenate_ice/concat_ice_daily.sh" |
|
assert ( |
|
"userscripts" in config |
|
and "sync" in config["userscripts"] |
|
and config["userscripts"]["sync"] == script |
|
), ( |
|
"Expect sync userscript set to ice-concatenation script." |
|
+ f"\nuserscript:\n sync: {script}" |
|
) |
We could only run that test depending on the version of ACCESS-OM2, or delete the test ?
After ACCESS-OM2 2026.02.000 deployment with ACCESS-NRI/cice5#72, the sync userscript is not required:
model-config-tests/src/model_config_tests/config_tests/qa/test_access_om2_config.py
Lines 129 to 140 in 31685c1
We could only run that test depending on the version of ACCESS-OM2, or delete the test ?