Skip to content

Commit

Permalink
bldr: add noble to test releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Seres committed Oct 17, 2024
1 parent 5c0af4d commit 8e32547
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bldr/bldr.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def build(self, package_dir: Path) -> DockerImage:
@classmethod
def selftest(cls) -> None:
client = create_docker_client()
for ubuntu_release in ['focal', 'jammy']:
for ubuntu_release in ['focal', 'jammy', 'noble']:
image = DockerImage(client=client, image='ubuntu:{}'.format(ubuntu_release))
assert image is not None, "DockerImage should be initialized without Exception"

Expand Down
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import shutil
from pathlib import Path

DEFAULT_DOCKER_IMAGES = ["ubuntu:focal", "ubuntu:jammy"]
DEFAULT_DOCKER_IMAGES = ["ubuntu:focal", "ubuntu:jammy", "ubuntu:noble"]


def pytest_addoption(parser):
Expand Down

0 comments on commit 8e32547

Please sign in to comment.