Skip to content

Commit 18e47f9

Browse files
committed
WIP: Mark network multiarch tests
Signed-off-by: <ysegev@redhat.com>
1 parent bd7cef3 commit 18e47f9

File tree

16 files changed

+30
-4
lines changed

16 files changed

+30
-4
lines changed

tests/network/bgp/evpn/test_evpn_connectivity.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import pytest
44

5+
pytestmark = pytest.mark.multiarch
6+
57
"""
68
Markers:
79
- IPv4

tests/network/bgp/test_bgp_connectivity.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
pytestmark = [
77
pytest.mark.bgp,
88
pytest.mark.ipv4,
9+
pytest.mark.multiarch,
910
pytest.mark.usefixtures("bgp_setup_ready"),
1011
]
1112

tests/network/connectivity/test_pod_network.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def cloud_init_ipv6_network_data(ipv6_primary_interface_cloud_init_data):
8484
marks=[
8585
pytest.mark.polarion("CNV-2332"),
8686
pytest.mark.ipv4,
87+
pytest.mark.multiarch,
8788
],
8889
),
8990
pytest.param(

tests/network/flat_overlay/test_flat_overlay.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"enable_multi_network_policy_usage",
1515
),
1616
pytest.mark.ipv4,
17+
pytest.mark.multiarch,
1718
]
1819

1920

tests/network/general/test_network_naming.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
from utilities.virt import VirtualMachineForTests, fedora_vm_body
55

6+
pytestmark = pytest.mark.multiarch
7+
68

79
@pytest.fixture()
810
def invalid_network_names():

tests/network/jumbo_frame/test_pod_network_ovn.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
]
1515

1616

17+
@pytest.mark.multiarch
18+
@pytest.mark.single_nic
1719
class TestJumboPodNetworkOnly:
1820
@pytest.mark.ipv4
1921
@pytest.mark.polarion("CNV-9660")

tests/network/kubemacpool/explicit_range/test_kmp_custom_range.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
pytestmark = [
44
pytest.mark.ipv4,
5+
pytest.mark.multiarch,
56
]
67

78

tests/network/localnet/test_default_bridge.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
from utilities.constants import QUARANTINED
1515
from utilities.virt import migrate_vm_and_verify
1616

17+
pytestmark = pytest.mark.multiarch
18+
1719

1820
@pytest.mark.gating
1921
@pytest.mark.single_nic

tests/network/migration/test_masquerade_connectivity_after_migration.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
LOGGER = logging.getLogger(__name__)
1717

18+
pytestmark = pytest.mark.multiarch
19+
1820

1921
@pytest.fixture(scope="module")
2022
def running_vm_static(

tests/network/migration/test_migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def test_connectivity_after_migration_and_restart(
354354
@pytest.mark.parametrize(
355355
"ip_family",
356356
[
357-
pytest.param("ipv4", marks=[pytest.mark.ipv4, pytest.mark.polarion("CNV-12508")]),
357+
pytest.param("ipv4", marks=[pytest.mark.ipv4, pytest.mark.multiarch, pytest.mark.polarion("CNV-12508")]),
358358
pytest.param("ipv6", marks=[pytest.mark.ipv6, pytest.mark.polarion("CNV-12509")]),
359359
],
360360
)

0 commit comments

Comments
 (0)