From 1762bc28f8ccdbde3cedd83ceb2f76204b2f2e17 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Thu, 27 Feb 2025 19:25:58 +0800 Subject: [PATCH] [dhcp_relay] Remove test_dhcp_relay test in t0-2vlans (#17208) What is the motivation for this PR? Skip test_dhcp_relay in vs with t0-2vlans topo due to flaky to unblock pr check How did you do it? Skip test_dhcp_relay in vs with t0-2vlans topo due to flaky to unblock pr check How did you verify/test it? PR check --- .azure-pipelines/pr_test_scripts.yaml | 1 - tests/dhcp_relay/test_dhcp_relay.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.azure-pipelines/pr_test_scripts.yaml b/.azure-pipelines/pr_test_scripts.yaml index ff75ce060ae..78c9186bcbb 100644 --- a/.azure-pipelines/pr_test_scripts.yaml +++ b/.azure-pipelines/pr_test_scripts.yaml @@ -242,7 +242,6 @@ t0: - pc/test_lag_member_forwarding.py t0-2vlans: - - dhcp_relay/test_dhcp_relay.py - dhcp_relay/test_dhcpv6_relay.py - vlan/test_host_vlan.py - vlan/test_vlan_ping.py diff --git a/tests/dhcp_relay/test_dhcp_relay.py b/tests/dhcp_relay/test_dhcp_relay.py index d25c68dbb56..62f7fbbaa5c 100644 --- a/tests/dhcp_relay/test_dhcp_relay.py +++ b/tests/dhcp_relay/test_dhcp_relay.py @@ -21,7 +21,7 @@ from tests.dhcp_relay.dhcp_relay_utils import check_routes_to_dhcp_server, restart_dhcp_service pytestmark = [ - pytest.mark.topology('t0', 'm0', 't0-2vlans'), + pytest.mark.topology('t0', 'm0'), pytest.mark.device_type('vs') ]