Skip to content

Commit

Permalink
Merge pull request #40 from ACCESS-NRI/om3-empty-qa-checks
Browse files Browse the repository at this point in the history
`ACCESS-OM3`: Empty QA Checks
  • Loading branch information
CodeGat committed Aug 6, 2024
2 parents 7670f57 + a96160d commit f9d1bee
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
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.1"
version = "0.0.2"
authors = [
{ name = "ACCESS-NRI" },
]
Expand Down
3 changes: 3 additions & 0 deletions src/model_config_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,6 @@ def pytest_configure(config):
config.addinivalue_line(
"markers", "access_om2: mark as access-om2 specific tests in quick QA CI checks"
)
config.addinivalue_line(
"markers", "access_om3: mark as access-om3 specific tests in quick QA CI checks"
)
14 changes: 14 additions & 0 deletions src/model_config_tests/test_access_om3_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2024 ACCESS-NRI and contributors. See the top-level COPYRIGHT file for details.
# SPDX-License-Identifier: Apache-2.0

"""ACCESS-OM3 specific configuration tests"""

import pytest


@pytest.mark.access_om3
class TestAccessOM3:
"""ACCESS-OM3 Specific configuration and metadata tests"""

def test_pass(self):
pass

0 comments on commit f9d1bee

Please sign in to comment.