Skip to content

Commit

Permalink
Merge pull request #45 from ACCESS-NRI/access-esm1p5-more-test-fixes
Browse files Browse the repository at this point in the history
`ACCESS-ESM1.5` Further Test Fixes
  • Loading branch information
CodeGat authored Aug 12, 2024
2 parents 8a7d38d + 8f2fb04 commit 26fc4d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "model_config_tests"
version = "0.0.4"
version = "0.0.5"
authors = [
{ name = "ACCESS-NRI" },
]
Expand Down
4 changes: 2 additions & 2 deletions src/model_config_tests/qa/test_access_esm1p5_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
######################################
# Bunch of expected values for tests #
######################################
VALID_REALMS: set[str] = {"atmosphere", "land", "ocean", "ocnBgchm", "seaIce"}
VALID_REALMS: set[str] = {"atmosphere", "land", "ocean", "ocnBgchem", "seaIce"}
VALID_KEYWORDS: set[str] = {"global", "access-esm1.5"}
VALID_NOMINAL_RESOLUTION: str = "100 km"
VALID_REFERENCE: str = "https://doi.org/10.1071/ES19035"
Expand Down Expand Up @@ -104,7 +104,7 @@ def test_access_esm1p5_manifest_exe_in_release_spack_location(
)

@pytest.mark.parametrize(
"field,expected", [("realm", VALID_REALMS), ("keyword", VALID_KEYWORDS)]
"field,expected", [("realm", VALID_REALMS), ("keywords", VALID_KEYWORDS)]
)
def test_metadata_field_equal_expected_sequence(self, field, expected, metadata):

Expand Down

0 comments on commit 26fc4d5

Please sign in to comment.