-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into add-digi-os-platform
- Loading branch information
Showing
263 changed files
with
21,651 additions
and
3,017 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,101 @@ | ||
--- | ||
name: build | ||
on: [push, pull_request] | ||
--- | ||
name: Netmiko | ||
on: [push,pull_request] | ||
env: | ||
environment: gh_actions | ||
FORCE_COLOR: 1 | ||
|
||
jobs: | ||
std_tests: | ||
runs-on: ubuntu-latest | ||
linters: | ||
name: linters | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
# python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] | ||
python-version: ["3.7", "3.8", "3.9", "3.10"] | ||
python-version: [ '3.11' ] | ||
platform: [ubuntu-20.04] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -r requirements-dev.txt | ||
pip install -r requirements-genie.txt | ||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.3.2 | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
||
- name: Run black | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v2 | ||
id: cached-poetry-dependencies | ||
with: | ||
path: .venv | ||
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Install Dependencies | ||
run: poetry install | ||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | ||
|
||
- name: Run pylama | ||
run: | | ||
black --check . | ||
poetry run pylama . | ||
- name: Run linter | ||
- name: Run black | ||
run: | | ||
pylama . | ||
poetry run black --check . | ||
- name: Run mypy | ||
run: | | ||
mypy ./netmiko/ | ||
poetry run mypy --version | ||
poetry run mypy ./netmiko/ | ||
pytest: | ||
name: Testing on Python ${{ matrix.python-version }} (${{ matrix.platform}}) | ||
defaults: | ||
run: | ||
shell: bash | ||
strategy: | ||
matrix: | ||
python-version: [ '3.8', '3.9', '3.10', '3.11' ] | ||
platform: [ubuntu-20.04] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.3.2 | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v2 | ||
id: cached-poetry-dependencies | ||
with: | ||
path: .venv | ||
key: venv-${{ matrix.python-version }}-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | ||
if: ${{ matrix.platform != 'windows-latest' }} # windows hangs if using a cached venv | ||
|
||
- name: Install Dependencies | ||
run: poetry install | ||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | ||
|
||
- name: Run Tests | ||
run: | | ||
pytest -v -s tests/test_import_netmiko.py | ||
pytest -v -s tests/unit/test_base_connection.py | ||
pytest -v -s tests/unit/test_utilities.py | ||
pytest -v -s tests/unit/test_ssh_autodetect.py | ||
pytest -v -s tests/unit/test_connection.py | ||
poetry run pytest -v -s tests/test_import_netmiko.py | ||
poetry run pytest -v -s tests/unit/test_base_connection.py | ||
poetry run pytest -v -s tests/unit/test_utilities.py | ||
poetry run pytest -v -s tests/unit/test_ssh_autodetect.py | ||
poetry run pytest -v -s tests/unit/test_connection.py | ||
poetry run pytest -v -s tests/unit/test_entry_points.py |
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
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
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
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
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
Oops, something went wrong.