Skip to content

Commit

Permalink
Add noble integration tests
Browse files Browse the repository at this point in the history
The hw supports Noble, but we did not provide tests for it.
Add noble option to pytest CLI options.

Signed-off-by: Robert Gildein <[email protected]>
  • Loading branch information
rgildein committed Nov 14, 2024
1 parent c4f807b commit 892ed68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fail-fast: false
matrix:
runs-on: [[ubuntu-22.04], [Ubuntu_ARM64_4C_16G_01]]
test-command: ['tox -e func -- -v --series focal --keep-models', 'tox -e func -- -v --series jammy --keep-models']
test-command: ['tox -e func -- -v --series focal --keep-models', 'tox -e func -- -v --series jammy --keep-models', 'tox -e func -- -v --series noble --keep-models']
juju-channel: ["3.4/stable"]
steps:

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def pytest_addoption(parser):
"--series",
type=str.lower,
default="jammy",
choices=["focal", "jammy"],
choices=["focal", "jammy", "noble"],
help="Set series for the machine units",
)
parser.addoption(
Expand Down

0 comments on commit 892ed68

Please sign in to comment.