[IOS-XR] Fix show l2vpn bridge-domain detail : Parses variations in the EVI field format correctly#907
Open
Kani999 wants to merge 2 commits intoCiscoTestAutomation:mainfrom
Conversation
1fae532 to
afd0682
Compare
This comment was marked as resolved.
This comment was marked as resolved.
afd0682 to
9aa193c
Compare
Contributor
Author
|
Hi there! 👋 Best regards, |
9aa193c to
3c4e60a
Compare
…ail parser - Modified `p63` regex in `show_l2vpn.py` to support optional suffix (e.g., "(SRv6)") for EVI values - Updated `golden9_expected.py` to reflect new test output for EVI field - Adjusted URL in `github_parser.json` for the updated line reference These changes enhance the parser's compatibility with new formats in `ShowL2vpnBridgeDomainDetail`.
3c4e60a to
07af294
Compare
Contributor
Author
|
Hi team, This PR was opened on Oct 29, 2024, and it's been over a year now. The build is failing in Python 3.9 job due to "Error: Version 3.9 with arch x64 not found" in actions/setup-python@v1 (available: 3.10+), which this PR doesn't affect. Could you please review and merge it when possible? I'd love to install the official version soon. Thanks! |
Python 3.9 is no longer available in the CI environment. Updated the workflow to test against Python 3.10, 3.11, 3.12, and 3.13.
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.
p63regex inshow_l2vpn.pyto support optional suffix (e.g., "(SRv6)") for EVI valuesgolden9_expected.pyto reflect new test output for EVI fieldgithub_parser.jsonfor the updated line referenceThese changes enhance the parser's compatibility with new formats in
ShowL2vpnBridgeDomainDetail.Description
The
ShowL2vpnBridgeDomainDetailparser for IOS-XR devices was not handling some variations in the EVI field format correctly, resulting in parsing errors or missed data. Specifically, when the evi field includes additional suffix information (e.g., (SRv6)), the parser could not match this pattern and failed to extract the EVI value.Motivation and Context
Closes #906
Checklist: