Skip to content
3 changes: 3 additions & 0 deletions tests/common/plugins/conditional_mark/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,9 @@ def load_config_facts(inv_name, dut_name):
results['VOQ_INBAND_INTERFACE'] = output_fields.get('VOQ_INBAND_INTERFACE', {})
results['BGP_VOQ_CHASSIS_NEIGHBOR'] = output_fields.get('BGP_VOQ_CHASSIS_NEIGHBOR', {})
results['INTERFACE'] = output_fields.get('INTERFACE', {})
if 'switch_type' in output_fields['DEVICE_METADATA']['localhost']:
results['switch_type'] = output_fields['DEVICE_METADATA']['localhost']['switch_type']

except Exception as e:
logger.error('Failed to load config basic facts, exception: {}'.format(repr(e)))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1659,6 +1659,12 @@ telemetry/test_telemetry.py:
conditions:
- "(is_multi_asic==True) and (release in ['201811', '201911'])"

telemetry/test_telemetry.py::test_telemetry_queue_buffer_cnt:
skip:
reason: "Testcase ignored due to switch type is voq"
conditions:
- "(switch_type=='voq')"

#######################################
##### pktgen #####
#######################################
Expand Down