Test Python 3.12 update #180
This file contains 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
name: Validate Data | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install -r requirements.txt -r requirements-dev.txt | |
# - name: Lint with flake8 | |
# run: | | |
# # stop the build if there are Python syntax errors or undefined names | |
# flake8 . --exclude .github,__pycache__,build,dist --count --select=E9,F63,F7,F82,F841 --show-source --statistics | |
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
# flake8 . --exclude .github,__pycache__,build,dist --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Lint with Ruff, ignore line length and imports not at top | |
run: | | |
ruff check napalm_srl test --ignore E501,E402 | |
- name: Run tests | |
run: | | |
pytest | |
clab-ci-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
python-version: ["3.10"] | |
needs: | |
- tests # Will only run if unit tests pass | |
steps: | |
- uses: actions/checkout@v3 | |
# TODO ideally this would reuse the work from 'tests' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies and the NAPALM driver library itself | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt . | |
# - name: pull srlinux image | |
# run: docker pull ghcr.io/nokia/srlinux:latest | |
- name: install latest clab | |
run: bash -c "$(curl -sL https://get.containerlab.dev)" # -- -v 0.36.1 | |
- name: start clab ci topo | |
run: make deploy-clab-ci | |
- name: Run all CI tests under test/ci | |
run: make run-tests |