Skip to content

Commit

Permalink
Skip RDMA tests on specific hwsku based on support (sonic-net#8343)
Browse files Browse the repository at this point in the history
### Description of PR
Summary:
There is a dependency between E2E test improvements PR: sonic-net#8341 and sonic-utilities GCU RDMA feature PR: sonic-net/sonic-utilities#2791

This PR skips the RDMA tests that will fail when the platform GCU RDMA feature PR is merged. After the GCU RDMA feature PR is merged and backported to the appropriate branch, we will revert this PR to stop skipping the E2E tests, and merge the E2E test improvements PR so that the tests will pass once the feature changes take effect.
  • Loading branch information
isabelmsft authored and parmarkj committed Oct 3, 2023
1 parent 75c6594 commit e71fa9c
Showing 1 changed file with 14 additions and 1 deletion.
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

0 comments on commit e71fa9c

Please sign in to comment.