Skip to content

Commit

Permalink
Merge pull request #1869 from ktbyers/develop
Browse files Browse the repository at this point in the history
Netmiko 3.2.0 Release
  • Loading branch information
ktbyers authored Jul 31, 2020
2 parents af37e09 + 29f6691 commit 20329c4
Show file tree
Hide file tree
Showing 259 changed files with 9,697 additions and 1,397 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: build
on: [push, pull_request]
jobs:
std_tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: [3.6, 3.7, 3.8]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- 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: Run black
run: |
black --check .
- name: Run linter
run: |
pylama .
- name: Run Tests
run: |
py.test -v -s tests/test_import_netmiko.py
py.test -v -s tests/unit/test_base_connection.py
py.test -v -s tests/unit/test_utilities.py
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ tests/standard_tests.sh
tests/etc/test_devices.yml
tests/etc/commands.yml
tests/etc/responses.yml
tests/etc/test_devices_exc.yml
examples/SECRET_DEVICE_CREDS.py
./build
./build/*
Expand Down
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 20329c4

Please sign in to comment.