From 38cf27ae1c5d35aed43d231ca214ff92638d813c Mon Sep 17 00:00:00 2001 From: Zhijian Li Date: Fri, 22 Sep 2023 02:18:13 -0700 Subject: [PATCH] Skip testcase on M0/Mx (#10102) What is the motivation for this PR? Skip below testcases on M0/Mx topology: - bgp/test_bgp_queue.py - generic_config_updater/test_pg_headroom_update.py How did you do it? Updated conditional mark file. How did you verify/test it? Verified on Mx testbed. Signed-off-by: Zhijian Li --- .../conditional_mark/tests_mark_conditions.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/common/plugins/conditional_mark/tests_mark_conditions.yaml b/tests/common/plugins/conditional_mark/tests_mark_conditions.yaml index c2cf4f3f8b..83e2278e2c 100644 --- a/tests/common/plugins/conditional_mark/tests_mark_conditions.yaml +++ b/tests/common/plugins/conditional_mark/tests_mark_conditions.yaml @@ -106,6 +106,12 @@ bgp/test_bgp_multipath_relax.py: conditions: - "'backend' in topo_name" +bgp/test_bgp_queue.py: + skip: + reason: "Unsupported topology" + conditions: + - "topo_type in ['m0', 'mx']" + bgp/test_bgp_slb.py: skip: reason: "Skip over topologies which doesn't support slb." @@ -538,6 +544,12 @@ generic_config_updater/test_pfcwd_status.py: conditions: - "topo_type in ['m0', 'mx']" +generic_config_updater/test_pg_headroom_update.py: + skip: + reason: "Unsupported topology." + conditions: + - "topo_type in ['m0', 'mx']" + ####################################### ##### http ##### #######################################