Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/integration/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion zppy/climo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion zppy/e3sm_diags.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion zppy/global_time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion zppy/ilamb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion zppy/mpas_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion zppy/tc_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions zppy/ts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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