Skip to content

Commit df33b40

Browse files
authored
add paramiko types for mypy compliance (#613)
1 parent bca5dd5 commit df33b40

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.github/workflows/test-docker.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
python -m pip install --upgrade pip
2424
pip install -r requirements.txt
2525
pip install -r requirements-testing.txt
26+
pip install -r requirements-tunnel.txt
2627
- name: Build
2728
run: |
2829
make container

.github/workflows/test-library.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
python -m pip install --upgrade pip
2424
pip install -r requirements.txt
2525
pip install -r requirements-testing.txt
26+
pip install -r requirements-tunnel.txt
2627
- name: Quality Check
2728
run: |
2829
flake8 --ignore=W504 --max-line-length=127 --max-complexity=19 proxy/ tests/ setup.py

requirements-testing.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ flake8==3.9.2
55
pytest==6.2.5
66
pytest-cov==2.12.1
77
autopep8==1.5.7
8-
mypy==0.812
8+
mypy==0.910
99
py-spy==0.3.9
1010
codecov==2.1.12
1111
tox==3.24.4

requirements-tunnel.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
paramiko==2.7.2
2+
types-paramiko==2.7.0

0 commit comments

Comments
 (0)