From 5cba66f1290fbd30e4d60a9e9d90cf4426cc7925 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Tue, 7 May 2024 14:12:59 +0800 Subject: [PATCH] Correct test_bgp_prefix topo (#12740) Correct the topo that was misconfigured in previous PR --- .azure-pipelines/pr_test_scripts.yaml | 1 - tests/generic_config_updater/test_bgp_prefix.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 7cd84d0f574..26e3c14484e 100644 --- a/.azure-pipelines/pr_test_scripts.yaml +++ b/.azure-pipelines/pr_test_scripts.yaml @@ -38,7 +38,6 @@ t0: - fdb/test_fdb_mac_expire.py - fdb/test_fdb_mac_move.py - generic_config_updater/test_aaa.py - - generic_config_updater/test_bgp_prefix.py - generic_config_updater/test_bgp_speaker.py - generic_config_updater/test_bgpl.py - generic_config_updater/test_cacl.py diff --git a/tests/generic_config_updater/test_bgp_prefix.py b/tests/generic_config_updater/test_bgp_prefix.py index a702654394b..52612e0ef9b 100644 --- a/tests/generic_config_updater/test_bgp_prefix.py +++ b/tests/generic_config_updater/test_bgp_prefix.py @@ -8,7 +8,7 @@ from tests.generic_config_updater.gu_utils import create_checkpoint, delete_checkpoint, rollback_or_reload pytestmark = [ - pytest.mark.topology('t0', 't1') + pytest.mark.topology('t1'), # It is a t1 only feature ] logger = logging.getLogger(__name__)