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
4 changes: 3 additions & 1 deletion tests/bgp/bgp_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,9 @@ def initial_tsa_check_before_and_after_test(duthosts):
"Supervisor {} tsa_enabled config is enabled".format(duthost.hostname))

def run_tsb_on_linecard_and_verify(lc):
if verify_dut_configdb_tsa_value(lc) is not False or get_tsa_chassisdb_config(lc) != 'false' or \
is_chassis = not lc.dut_basic_facts()['ansible_facts']['dut_basic_facts'].get("is_chassis_config_absent")
if verify_dut_configdb_tsa_value(lc) is not False or \
(is_chassis and get_tsa_chassisdb_config(lc) != 'false') or \
get_traffic_shift_state(lc, cmd='TSC no-stats') != TS_NORMAL:
lc.shell('TSB')
lc.shell('sudo config save -y')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ voq/test_voq_init.py::test_voq_neighbor_create:
conditions:
- "is_chassis_config_absent==True"

#######################################
#####test_voq_intfs.py #####
#######################################
voq/test_voq_intfs.py::test_cycle_voq_intf:
skip:
reason: "Skipped as the test applies to chassis only"
conditions:
- "is_chassis_config_absent==True"

#################################################
#####test_voq_ipfwd.py #####
#################################################
Expand Down
Loading