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

Remove IPv6-only on IPv6 only infra test #768

Merged
merged 3 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 0 additions & 4 deletions .github/workflows/integration-informing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ jobs:
TEST_FLAVOR: ${{ matrix.patch }}
TEST_INSPECTION_REPORTS_DIR: ${{ github.workspace }}/inspection-reports
run: |
# IPv6-only is only supported on moonray
if [[ "${{ matrix.patch }}" == "moonray" ]]; then
export TEST_IPV6_ONLY="true"
fi
cd tests/integration && sg lxd -c 'tox -e integration'
- name: Prepare inspection reports
if: failure()
Expand Down
9 changes: 0 additions & 9 deletions tests/integration/tests/test_networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Copyright 2024 Canonical, Ltd.
#
import logging
import os
from ipaddress import IPv4Address, IPv6Address, ip_address
from typing import List

Expand Down Expand Up @@ -62,10 +61,6 @@ def test_dualstack(instances: List[harness.Instance]):
@pytest.mark.node_count(3)
@pytest.mark.disable_k8s_bootstrapping()
@pytest.mark.network_type("dualstack")
@pytest.mark.skipif(
os.getenv("TEST_IPV6_ONLY") in ["false", None],
reason="IPv6 is currently only supported for moonray/calico",
)
def test_ipv6_only_on_dualstack_infra(instances: List[harness.Instance]):
main = instances[0]
joining_cp = instances[1]
Expand Down Expand Up @@ -131,10 +126,6 @@ def test_ipv6_only_on_dualstack_infra(instances: List[harness.Instance]):
@pytest.mark.node_count(3)
@pytest.mark.disable_k8s_bootstrapping()
@pytest.mark.network_type("ipv6")
@pytest.mark.skipif(
os.getenv("TEST_IPV6_ONLY") in ["false", None],
reason="IPv6 is currently only supported for moonray/calico",
)
def test_ipv6_only_on_ipv6_infra(instances: List[harness.Instance]):
main = instances[0]
joining_cp = instances[1]
Expand Down
Loading