Skip to content

Merge pull request #67 from jbemmel/packaging-updates #52

Merge pull request #67 from jbemmel/packaging-updates

Merge pull request #67 from jbemmel/packaging-updates #52

name: napalm-sros
on: [push, pull_request]
jobs:
std_tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
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
python -m pip install -e .
pip install -r requirements.txt -r requirements-dev.txt
# Code formatter
# - name: Run black
# run: |
# black --check .
# - name: Run linter
# run: |
# pylama .
# - 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 --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 or multiple
run: |
ruff check napalm_sros test --ignore E501,E402,E401
# TODO future
# - name: Run type checker
# run: |
# mypy -p napalm --config-file mypy.ini
# - name: Run Tests
# run: |
# py.test --cov=napalm --cov-report term-missing -vs --pylama
- name: Test with pytest
run: |
pytest