Skip to content
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
3 changes: 2 additions & 1 deletion tests/network/flat_overlay/test_flat_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
pytest.mark.usefixtures(
"enable_multi_network_policy_usage",
),
pytest.mark.ipv4,
Comment thread
azhivovk marked this conversation as resolved.
Comment thread
azhivovk marked this conversation as resolved.
Comment thread
azhivovk marked this conversation as resolved.
Comment thread
azhivovk marked this conversation as resolved.
]


@pytest.mark.s390x
class TestFlatOverlayConnectivity:
@pytest.mark.gating
@pytest.mark.ipv4
@pytest.mark.polarion("CNV-10158")
# Not marked as `conformance`; requires NMState
@pytest.mark.dependency(name="test_flat_overlay_basic_ping")
Expand Down Expand Up @@ -93,6 +93,7 @@ def test_flat_overlay_consistent_ip(
)


@pytest.mark.jumbo_frame
class TestFlatOverlayJumboConnectivity:
@pytest.mark.polarion("CNV-10162")
@pytest.mark.s390x
Expand Down
11 changes: 7 additions & 4 deletions tests/network/flat_overlay/test_multi_network_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
from tests.network.utils import assert_no_ping
from utilities.network import assert_ping_successful

pytestmark = pytest.mark.usefixtures(
"enable_multi_network_policy_usage",
"flat_l2_port",
)
pytestmark = [
pytest.mark.usefixtures(
"enable_multi_network_policy_usage",
"flat_l2_port",
),
pytest.mark.ipv4,
]


@pytest.mark.polarion("CNV-10644")
Expand Down