Skip to content

Commit

Permalink
Skip condition to skip SNMP IPv6 test case in 202211 branch. (sonic-n…
Browse files Browse the repository at this point in the history
…et#9856)

What is the motivation for this PR?
sonic-net#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 and AharonMalkin committed Jan 25, 2024
1 parent 6a4bad9 commit 4aafc56
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 4aafc56

Please sign in to comment.