Skip to content

Commit

Permalink
Add tests for both versions of paramiko
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Aug 17, 2023
1 parent eb4465e commit d462a3d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
name: Test (${{ matrix.python-version }})
strategy:
matrix:
paramiko-version:
- '2.0'
- '3.0'
python-version:
#- 2.7
#- 3.5
Expand All @@ -35,6 +38,8 @@ jobs:
run: python -m pip install -U pip wheel setuptools
- name: Install test dependencies
run: python -m pip install -U -r tests/requirements.txt
- name: Install paramiko ${{ matrix.paramiko-version }}
run: python -m pip install paramiko~=${{ matrix.paramiko-version }}
- name: Install local code
run: python -m pip install .
- name: Test with coverage
Expand Down

0 comments on commit d462a3d

Please sign in to comment.