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

test: limit temp dhcp6 changes to < NOBLE #4942

Merged
merged 1 commit into from
Feb 23, 2024
Merged
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
9 changes: 7 additions & 2 deletions tests/integration_tests/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
from tests.integration_tests.clouds import IntegrationCloud
from tests.integration_tests.conftest import get_validated_source
from tests.integration_tests.integration_settings import PLATFORM
from tests.integration_tests.releases import CURRENT_RELEASE, FOCAL, IS_UBUNTU
from tests.integration_tests.releases import (
CURRENT_RELEASE,
FOCAL,
IS_UBUNTU,
NOBLE,
)
from tests.integration_tests.util import verify_clean_log

LOG = logging.getLogger("integration_testing.test_upgrade")
Expand Down Expand Up @@ -138,7 +143,7 @@ def test_clean_boot_of_upgraded_package(session_cloud: IntegrationCloud):
assert post_json["v1"]["datasource"].startswith(
"DataSourceAzure"
)
if PLATFORM in ["gce", "qemu"]:
if PLATFORM in ["gce", "qemu"] and CURRENT_RELEASE < NOBLE:
# GCE regenerates network config per boot AND
# GCE uses fallback config AND
# #4474 changed fallback configuration.
Expand Down
Loading