Update SRv6 test conditions for 202412, master, and 202511+ releases#5
Open
bpar9 wants to merge 1 commit into
Open
Update SRv6 test conditions for 202412, master, and 202511+ releases#5bpar9 wants to merge 1 commit into
bpar9 wants to merge 1 commit into
Conversation
- Update srv6/test_srv6_dataplane.py to support 202412, master, and 202511+ releases - Update srv6/test_srv6_static_config.py to support 202412, master, and 202511+ releases - Update srv6/test_srv6_vlan_forwarding.py to support 202412, master, and 202511+ releases - Add skip condition for Mellanox SPC1-3 platforms (asic_gen in ['spc1', 'spc2', 'spc3']) - Update reason messages to reflect new conditions Co-Authored-By: bhavani@cisco.com <bhavani@cisco.com>
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
11 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of PR
Summary:
Updates SRv6 test skip conditions in
tests_mark_conditions.yamlto:asic_gen in ['spc1', 'spc2', 'spc3'])Affected test files:
srv6/test_srv6_dataplane.pysrv6/test_srv6_static_config.pysrv6/test_srv6_vlan_forwarding.pyType of change
Back port request
Approach
What is the motivation for this PR?
Enable SRv6 tests to run on master and 202511+ releases in addition to 202412, while skipping tests on Mellanox SPC1-3 platforms which do not support SRv6.
How did you do it?
Modified the release condition from
release not in ['202412']torelease not in ['202412', 'master'] and not (release.startswith('2025') and int(release[4:]) >= 511)to allow tests on 202412, master, and any 2025xx release where xx >= 511.Added new skip condition
asic_gen in ['spc1', 'spc2', 'spc3']to skip tests on Mellanox SPC1-3 platforms.How did you verify/test it?
YAML syntax verified. Changes are configuration-only and will be validated when tests run in CI.
Any platform specific information?
Tests will be skipped on Mellanox SPC1, SPC2, and SPC3 platforms.
Supported testbed topology if it's a new test case?
N/A - existing test configuration update
Documentation
N/A
Link to Devin run: https://cisco-demo.devinenterprise.com/sessions/1b3ce16abcb140289a93bf2b0923cd61
Requested by: bhavani@cisco.com (@bpar9)