diff --git a/tests/integration/utils.py b/tests/integration/utils.py index 2389b33d..c76d3384 100644 --- a/tests/integration/utils.py +++ b/tests/integration/utils.py @@ -293,6 +293,9 @@ def generate_cfgs(unified_testing=False, dry_run=False): f"e3sm_to_cmip_environment_commands={expansions['e3sm_to_cmip_environment_commands']}" ) print(f"environment_commands={expansions['environment_commands']}") + print( + "Reminder: `e3sm_to_cmip_environment_commands=''` => the environment of the `ts` task will be used" + ) print( "Reminder: `environment_commands=''` => the latest E3SM Unified environment will be used" ) diff --git a/zppy/climo.py b/zppy/climo.py index ca6a28fe..71d8a7f1 100644 --- a/zppy/climo.py +++ b/zppy/climo.py @@ -104,6 +104,6 @@ def climo(config, scriptDir, existing_bundles, job_ids_file): else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") return existing_bundles diff --git a/zppy/e3sm_diags.py b/zppy/e3sm_diags.py index 6b65b0b0..bac2c2da 100644 --- a/zppy/e3sm_diags.py +++ b/zppy/e3sm_diags.py @@ -273,7 +273,7 @@ def e3sm_diags(config, scriptDir, existing_bundles, job_ids_file): # noqa: C901 else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") print_url(c, "e3sm_diags") return existing_bundles diff --git a/zppy/global_time_series.py b/zppy/global_time_series.py index 47a5380c..9af839fc 100644 --- a/zppy/global_time_series.py +++ b/zppy/global_time_series.py @@ -203,7 +203,7 @@ def global_time_series(config, scriptDir, existing_bundles, job_ids_file): # no else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") print_url(c, "global_time_series") return existing_bundles diff --git a/zppy/ilamb.py b/zppy/ilamb.py index a3b5ce1e..206582a3 100644 --- a/zppy/ilamb.py +++ b/zppy/ilamb.py @@ -126,7 +126,7 @@ def ilamb(config, scriptDir, existing_bundles, job_ids_file): else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") print_url(c, "ilamb") return existing_bundles diff --git a/zppy/mpas_analysis.py b/zppy/mpas_analysis.py index 2a36e688..40a1c664 100644 --- a/zppy/mpas_analysis.py +++ b/zppy/mpas_analysis.py @@ -137,7 +137,7 @@ def mpas_analysis(config, scriptDir, existing_bundles, job_ids_file): else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") print_url(c, "mpas_analysis") return existing_bundles diff --git a/zppy/tc_analysis.py b/zppy/tc_analysis.py index 46130d59..52d7124c 100644 --- a/zppy/tc_analysis.py +++ b/zppy/tc_analysis.py @@ -92,6 +92,6 @@ def tc_analysis(config, scriptDir, existing_bundles, job_ids_file): else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") return existing_bundles diff --git a/zppy/ts.py b/zppy/ts.py index 4528bd3c..d07a6fa8 100644 --- a/zppy/ts.py +++ b/zppy/ts.py @@ -114,9 +114,9 @@ def ts(config, scriptDir, existing_bundles, job_ids_file): else: print("...adding to bundle '%s'" % (c["bundle"])) - print(f"environment_commands={c['environment_commands']}") + print(f" environment_commands={c['environment_commands']}") print( - f"e3sm_to_cmip_environment_commands={c['e3sm_to_cmip_environment_commands']}" + f" e3sm_to_cmip_environment_commands={c['e3sm_to_cmip_environment_commands']}" ) return existing_bundles