Skip to content

Commit 871edd5

Browse files
committed
bugfix running mypy --strict during 'lint'
1 parent 42048df commit 871edd5

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ commands =
105105

106106
[testenv:mypy]
107107
deps =
108-
mypy --strict
108+
mypy
109109
commands =
110-
mypy telnetlib3
110+
mypy --strict telnetlib3
111111

112112
[testenv:pydocstyle]
113113
deps =
@@ -170,13 +170,15 @@ commands =
170170
deps =
171171
{[testenv:flake8]deps}
172172
{[testenv:isort_check]deps}
173+
{[testenv:mypy]deps}
173174
{[testenv:pydocstyle]deps}
174175
{[testenv:pylint]deps}
175176
{[testenv:codespell]deps}
176177
commands =
177178
{[testenv:flake8]commands}
178179
{[testenv:flake8_tests]commands}
179180
{[testenv:isort_check]commands}
181+
{[testenv:mypy]commands}
180182
{[testenv:pydocstyle]commands}
181183
{[testenv:pylint]commands}
182184
{[testenv:codespell]commands}

0 commit comments

Comments
 (0)