Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[action] [PR:10821] [Arista] skip testing sfp interfaces on Arista-7050QX-32S-S4Q31 #11105

Merged
merged 1 commit into from
Dec 20, 2023
Merged
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
6 changes: 6 additions & 0 deletions tests/platform_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ def xcvr_skip_list(duthosts):
logging.debug(
"hwsku.json absent or port_type for interfaces not included for hwsku {}".format(hwsku))

# No hwsku.json for Arista-7050-QX-32S/Arista-7050QX-32S-S4Q31
if hwsku in ['Arista-7050-QX-32S', 'Arista-7050QX-32S-S4Q31']:
sfp_list = ['Ethernet0', 'Ethernet1', 'Ethernet2', 'Ethernet3']
logging.debug('Skipping sfp interfaces: {}'.format(sfp_list))
intf_skip_list[dut.hostname].extend(sfp_list)

return intf_skip_list


Expand Down