forked from ESCOMP/CTSM
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'ctsm5.1.dev142' into tillage-mike-merge142
b4b changes to Python scripts, history lists, tech note, and clm_time_manager. * Add system and unit tests for making fsurdat with all crops everywhere (ESCOMP#2081) * Rework master_list* files etc. (ESCOMP#2087) * Fixes to methane Tech Note (ESCOMP#2091) * Add is_doy_in_interval() function (ESCOMP#2158) * Avoid using subprocess.run() in FSURDATMODIFYCTSM (ESCOMP#2125) Closes issues: * Add unit test for making fsurdat with all crops everywhere (ESCOMP#2079) * Rework master_list_(no)?fates.rst? (ESCOMP#2083) * conda run -n can fail if a conda environment is already active (ESCOMP#2109) * conda fails to load for SystemTests (ESCOMP#2111) # Conflicts: # src/biogeochem/CNBalanceCheckMod.F90 # src/biogeochem/CNCIsoFluxMod.F90 # src/biogeochem/CNDriverMod.F90 # src/biogeochem/CNPhenologyMod.F90 # src/biogeochem/CNProductsMod.F90 # src/biogeochem/CNVegCarbonFluxType.F90 # src/biogeochem/CNVegNitrogenFluxType.F90 # src/biogeochem/EDBGCDynMod.F90 # src/main/clm_initializeMod.F90 # src/main/controlMod.F90 # src/soilbiogeochem/SoilBiogeochemDecompCascadeBGCMod.F90
- Loading branch information
Showing
1,370 changed files
with
161,920 additions
and
54,530 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
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,21 @@ | ||
# Ran python directory through black python formatter | ||
d229b5c6689efc4c2a6cef077515c4ccd5c18ff6 | ||
4cd83cb3ee6d85eb909403487abf5eeaf4d98911 | ||
0aa2957c1f8603c63fa30b11295c06cfddff44a5 | ||
2cdb380febb274478e84cd90945aee93f29fa2e6 | ||
e44dc469439e02e9ee582dab274d890ebdfab104 | ||
565e7bcacbb0bba20ff80d680d8ad769676641c6 | ||
b88e1cd1b28e3609684c79a2ec0e88f26cfc362b | ||
51c102c5df2e0ef971b5f8eeeb477567899af63a | ||
7dacad70e74e2ec97f6492d4e7a3cb5dd498bcd7 | ||
b771971e3299c4fa56534b93421f7a2b9c7282fd | ||
9de88bb57ea9855da408cbec1dc8acb9079eda47 | ||
8bc4688e52ea23ef688e283698f70a44388373eb | ||
0a5a9e803b56ec1bbd6232eff1c99dbbeef25eb7 | ||
810cb346f05ac1aabfff931ab1a2b7b584add241 | ||
5933b0018f8e29413e30dda9b906370d147bad45 | ||
# Ran SystemTests and python/ctsm through black python formatter | ||
5364ad66eaceb55dde2d3d598fe4ce37ac83a93c | ||
8056ae649c1b37f5e10aaaac79005d6e3a8b2380 | ||
540b256d1f3382f4619d7b0877c32d54ce5c40b6 | ||
8a168bb0895f4f2421608dd2589398e13a6663e6 |
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,7 @@ | ||
*.svg filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.jpeg filter=lfs diff=lfs merge=lfs -text | ||
*.gif filter=lfs diff=lfs merge=lfs -text | ||
*.pdf filter=lfs diff=lfs merge=lfs -text | ||
*.nc filter=lfs diff=lfs merge=lfs -text |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: CESM forums | ||
url: https://bb.cgd.ucar.edu/cesm/forums/ctsm-clm-mosart-rtm.134/ | ||
about: For support with model use, troubleshooting, etc., please use the CTSM forum |
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,37 @@ | ||
name: black check on push and PR | ||
# | ||
# Run the python formatting in check mode | ||
# | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
black-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout the code | ||
- uses: actions/checkout@v2 | ||
# Use the latest stable version of the github action | ||
- uses: psf/black@stable | ||
with: | ||
# Use options and version identical to the conda environment | ||
# Using pyproject.toml makes sure this testing is consistent with our python directory testing | ||
options: "--check --config python/pyproject.toml" | ||
src: "./python" | ||
# Version should be coordinated with the ctsm_pylib conda environment under the python directory | ||
version: "22.3.0" | ||
# Actions identical to above for each directory and source file we need to check (arrays aren't allowed for src: field) | ||
- uses: psf/black@stable | ||
with: | ||
options: "--check --config python/pyproject.toml" | ||
src: "./cime_config/SystemTests" | ||
version: "22.3.0" | ||
- uses: psf/black@stable | ||
with: | ||
options: "--check --config python/pyproject.toml" | ||
src: "./cime_config/buildlib" | ||
version: "22.3.0" | ||
- uses: psf/black@stable | ||
with: | ||
options: "--check --config python/pyproject.toml" | ||
src: "./cime_config/buildnml" | ||
version: "22.3.0" |
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,7 @@ | ||
[lfs] | ||
# We auto-fetch any netCDF files, because they are needed for | ||
# running tests; however, we do NOT auto-fetch other binary | ||
# files, in particular image files that are part of the | ||
# documentation source (these are fetched as part of the | ||
# documentation build process). | ||
fetchinclude = *.nc |
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,7 @@ | ||
{ | ||
"creators": [ | ||
{ | ||
"name": "CTSM Development Team" | ||
} | ||
] | ||
} |
Oops, something went wrong.