File tree 3 files changed +2
-15
lines changed
3 files changed +2
-15
lines changed Original file line number Diff line number Diff line change 58
58
- name : Lint with flake8
59
59
if : matrix.python-version == '3.9'
60
60
run : flake8 *.py --count --max-complexity=18 --max-line-length=88 --show-source --statistics
61
- - name : Lint with mypy
62
- if : matrix.python-version == '3.9'
63
- run : |
64
- mkdir --parents --verbose .mypy_cache
65
- mypy --ignore-missing-imports --install-types --non-interactive *.py || true
66
61
# tests and coverage
67
62
- name : Test
68
63
run : pytest run_tests.py --cov --cov-report term-missing
Original file line number Diff line number Diff line change @@ -14,9 +14,8 @@ flake8-quotes
14
14
flake8-todo
15
15
importlib-metadata; python_version < '3.8'
16
16
isort
17
- mypy
18
17
pytest
19
18
pytest-cov
20
19
pyupgrade
21
- typed-ast; python_version < '3.8' # dependency of black and mypy
20
+ typed-ast; python_version < '3.8' # dependency of black
22
21
zipp; python_version < '3.8' # dependency of importlib-metadata
Original file line number Diff line number Diff line change @@ -83,12 +83,8 @@ isort==5.10.1
83
83
# flake8-isort
84
84
mccabe==0.7.0
85
85
# via flake8
86
- mypy==0.982
87
- # via -r requirements-lint.in
88
86
mypy-extensions==0.4.3
89
- # via
90
- # black
91
- # mypy
87
+ # via black
92
88
packaging==21.3
93
89
# via pytest
94
90
pathspec==0.10.1
@@ -131,19 +127,16 @@ tomli==2.0.1
131
127
# via
132
128
# black
133
129
# coverage
134
- # mypy
135
130
# pytest
136
131
typed-ast==1.5.4 ; python_version < "3.8"
137
132
# via
138
133
# -r requirements-lint.in
139
134
# black
140
- # mypy
141
135
typing-extensions==4.4.0
142
136
# via
143
137
# black
144
138
# gitpython
145
139
# importlib-metadata
146
- # mypy
147
140
urllib3==1.26.12
148
141
# via requests
149
142
zipp==3.10.0 ; python_version < "3.8"
You can’t perform that action at this time.
0 commit comments