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

[snmp]Skipping enable_queue_counterpoll_type fixture for Nokia 7215 armhf platforms #16019

Merged
merged 1 commit into from
Dec 26, 2024
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
3 changes: 2 additions & 1 deletion tests/snmp/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def check_redis_output(duthost, key):
@pytest.fixture(scope="module", autouse=True)
def enable_queue_counterpoll_type(duthosts):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixture might not good to be set to autouse. @lizhijianrd please create an issue, we need clean up this later.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ADO: 30605270

for duthost in duthosts:
duthost.command('counterpoll queue enable')
if duthost.facts['platform'] not in ['armhf-nokia_ixs7215_52x-r0']:
duthost.command('counterpoll queue enable')


def pytest_addoption(parser):
Expand Down
Loading