-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into doc/hpc_tiers
- Loading branch information
Showing
11 changed files
with
253 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
exclude = .git,.github,venv,__pycache__,old,build,dist | ||
max-line-length = 160 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{% set cycle_YMDH = current_cycle | to_YMDH %} | ||
|
||
expdir: | ||
name: "EXPDIR" | ||
# Copy the experiment files from the EXPDIR into the ROTDIR for archiving | ||
{% set copy_expdir = "expdir." ~ cycle_YMDH %} | ||
FileHandler: | ||
mkdir: | ||
- "{{ ROTDIR }}/{{ copy_expdir }}" | ||
copy: | ||
{% for config in glob(EXPDIR ~ "/config.*") %} | ||
- [ "{{ config }}", "{{ ROTDIR }}/{{ copy_expdir }}/." ] | ||
{% endfor %} | ||
- [ "{{ EXPDIR }}/{{ PSLOT }}.xml", "{{ ROTDIR }}/{{ copy_expdir }}/." ] | ||
{% if ARCH_HASHES or ARCH_DIFFS %} | ||
- [ "{{ EXPDIR }}/git_info.log", "{{ ROTDIR }}/{{ copy_expdir }}/." ] | ||
{% endif %} | ||
target: "{{ ATARDIR }}/{{ cycle_YMDH }}/expdir.tar" | ||
required: | ||
- "{{ copy_expdir }}/config.*" | ||
- "{{ copy_expdir }}/{{ PSLOT }}.xml" | ||
{% if ARCH_HASHES or ARCH_DIFFS %} | ||
- "{{ copy_expdir }}/git_info.log" | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule wxflow
updated
9 files
+15 −0 | .vscode/launch.json | |
+11 −0 | .vscode/settings.json | |
+1 −1 | setup.cfg | |
+43 −8 | src/wxflow/file_utils.py | |
+42 −18 | src/wxflow/fsutils.py | |
+4 −0 | tests/conftest.py | |
+1 −1 | tests/test_configuration.py | |
+15 −0 | tests/test_file_utils.py | |
+150 −0 | tests/test_fsutils.py |
Oops, something went wrong.