Skip to content

Commit

Permalink
Skip condition to skip SNMP IPv6 test case in 202211 branch. (#9856)
Browse files Browse the repository at this point in the history
What is the motivation for this PR?
#9630 was added skip IPv6 related SNMP test cases in 202211 branch.
But the condition checks for branch name instead of release.
This is causing PR checker to fail as the branch name in PR checker is the PR number and not 202211

How did you do it?
Change condition to look for 202211 in release and not branch.
  • Loading branch information
SuvarnaMeenakshi authored Sep 6, 2023
1 parent 02ae60c commit c1f8c80
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1012,15 +1012,15 @@ show_techsupport/test_techsupport.py::test_techsupport:
#######################################
snmp/test_snmp_link_local.py:
skip:
reason: "SNMP over IPv6 support not present in 202211 branch."
reason: "SNMP over IPv6 support not present in 202211 release."
conditions:
- "branch in ['202211']"
- "release in ['202211']"

snmp/test_snmp_loopback.py:
skip:
reason: "SNMP over Loopback IPv6 support not present in 202211 branch."
reason: "SNMP over Loopback IPv6 support not present in 202211 release."
conditions:
- "branch in ['202211']"
- "release in ['202211']"

snmp/test_snmp_pfc_counters.py:
skip:
Expand Down

0 comments on commit c1f8c80

Please sign in to comment.