Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests(pro): bump pycloudlib add noble release to pro tests #5719

Merged
merged 1 commit into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# PyPI requirements for cloud-init integration testing
# https://cloudinit.readthedocs.io/en/latest/topics/integration_tests.html
#
pycloudlib>=1!6.7.0,<1!8
pycloudlib>=1!6.7.0,<1!9.3

# Avoid breaking change in `testpaths` treatment forced
# test/unittests/conftest.py to be loaded by our integration-tests tox env
Expand Down
3 changes: 2 additions & 1 deletion tests/integration_tests/modules/test_ubuntu_pro.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
FOCAL,
IS_UBUNTU,
JAMMY,
NOBLE,
)
from tests.integration_tests.util import (
get_feature_flag_value,
Expand Down Expand Up @@ -236,7 +237,7 @@ def maybe_install_cloud_init(session_cloud: IntegrationCloud):


@pytest.mark.skipif(
not all([IS_UBUNTU, CURRENT_RELEASE in [BIONIC, FOCAL, JAMMY]]),
CURRENT_RELEASE not in [BIONIC, FOCAL, JAMMY, NOBLE],
reason="Test runs on Ubuntu LTS releases only",
)
@pytest.mark.skipif(
Expand Down