Skip to content

Commit

Permalink
[dut_console]: conditionally skip connect tests for arista 7800 chass…
Browse files Browse the repository at this point in the history
…is (#15520)

Description of PR
Skip dut console connect tests for arista 7800 as the linecards do not have console ports

Summary:
Fixes #15518

Approach
What is the motivation for this PR?
Test was failing on setup due to no mgmt ip for console, as there isnt a console for the linecards

How did you do it?
conditionally skip for 7800 chassis

How did you verify/test it?
ran locally, tests are skipped

Any platform specific information?
arista 7800 specific

Signed-off-by: Liam Kearney <liamkearney@microsoft.com>
  • Loading branch information
liamkearney-msft authored and mssonicbld committed Nov 27, 2024
1 parent 4a5d341 commit 6a62a05
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/common/plugins/conditional_mark/tests_mark_conditions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,18 @@ dut_console:
conditions:
- "asic_type in ['vs']"

dut_console/test_console_baud_rate.py::test_baud_rate_boot_connect:
skip:
reason: "Platform linecards do not have console ports"
conditions:
- "asic_type in ['vs'] or 'arista_7800' in platform"

dut_console/test_console_baud_rate.py::test_baud_rate_sonic_connect:
skip:
reason: "Platform linecards do not have console ports"
conditions:
- "asic_type in ['vs'] or 'arista_7800' in platform"

#######################################
##### ecmp #####
#######################################
Expand Down

0 comments on commit 6a62a05

Please sign in to comment.