Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Run Tests

on:
- push
- pull_request

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyats[full]
if [ -f connector/requirements.txt ]; then pip install -r connector/requirements.txt; fi
if [ -f ncdiff/requirements.txt ]; then pip install -r ncdiff/requirements.txt; fi
- name: Test connector Unit Tests
run: |
cd connector
make develop
cd src/yang/connector/tests
python -m unittest
shell: bash
- name: Test ncdiff Unit Tests
run: |
cd ncdiff
make develop
cd src/yang/ncdiff/tests
python -m unittest
shell: bash
25 changes: 25 additions & 0 deletions connector/docs/changelog/2026/march.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
March 2026
==========

March 31 - Yang v26.3
------------------------



.. csv-table:: New Module Versions
:header: "Modules", "Version"

``yang.connector``, v26.3
``yang.ncdiff``, v26.3




Changelogs
^^^^^^^^^^

yang.connector
""""""""""""""

yang.ncdiff
"""""""""""
1 change: 1 addition & 0 deletions connector/docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
.. toctree::
:maxdepth: 2

2026/march
2026/february
2026/january
2025/december
Expand Down
2 changes: 1 addition & 1 deletion connector/src/yang/connector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

# metadata
__version__ = "26.2"
__version__ = "26.3"
__author__ = (
'Jonathan Yang <yuekyang@cisco.com>',
'Siming Yuan <siyuan@cisco.com',
Expand Down
2 changes: 1 addition & 1 deletion ncdiff/src/yang/ncdiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
edit-config message."""

# metadata
__version__ = "26.2"
__version__ = "26.3"
__author__ = 'Jonathan Yang <yuekyang@cisco.com>'
__contact__ = 'yang-python@cisco.com'
__copyright__ = 'Cisco Systems, Inc.'
Expand Down
Loading