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

Skip RDMA tests on specific hwsku based on support #8343

Merged
merged 1 commit into from
May 19, 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
15 changes: 14 additions & 1 deletion tests/common/plugins/conditional_mark/tests_mark_conditions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,12 @@ generic_config_updater:
conditions:
- "'t2' in topo_name"

generic_config_updater/test_ecn_config_update.py::test_ecn_config_updates:
skip:
reason: "This test is not run on this asic type currently"
conditions:
- "asic_type in ['cisco-8000']"

generic_config_updater/test_eth_interface.py::test_replace_fec:
skip:
reason: 'replace_fec ethernet test is not supported on virtual switch'
Expand Down Expand Up @@ -475,9 +481,16 @@ generic_config_updater/test_eth_interface.py::test_update_valid_invalid_index[33

generic_config_updater/test_incremental_qos.py::test_incremental_qos_config_updates:
skip:
reason: "This test was not run on this hwsku type currently"
reason: "This test is not run on this hwsku/asic type currently"
conditions:
- "not any(i in hwsku for i in ['2700', 'Arista-7170-64C', 'montara', 'newport'])"
- "asic_type in ['broadcom', 'cisco-8000']"

generic_config_updater/test_mmu_dynamic_threshold_config_update.py::test_dynamic_th_config_updates:
skip:
reason: "This test is not run on this asic type currently"
conditions:
- "asic_type in ['broadcom', 'cisco-8000']"

#######################################
##### http #####
Expand Down