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

[202205] [fdb] Address failures on td2 asics for fdb mac move test #9777

Merged
merged 1 commit into from
Aug 31, 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
9 changes: 6 additions & 3 deletions tests/fdb/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def set_polling_interval(duthost):
wait(wait_time, "Waiting {} sec for CRM counters to become updated".format(wait_time))

@pytest.fixture(scope='module')
def get_function_conpleteness_level(pytestconfig):
return pytestconfig.getoption("--completeness_level")

def get_function_conpleteness_level(pytestconfig, duthost):
asic_name = duthost.get_asic_name()
if asic_name in ['td2']:
return None
else:
return pytestconfig.getoption("--completeness_level")