extend mypy options

This commit is contained in:
Peter Bieringer 2025-02-02 09:03:25 +01:00
parent 87dc5538d2
commit 23a68b2fb1
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ skip_install = true
[tool.tox.env.mypy]
deps = ["mypy==1.11.0"]
commands = [["mypy", "."]]
commands = [["mypy", "--install-types", "--non-interactive", "."]]
skip_install = true

View file

@ -24,7 +24,7 @@ skip_install = True
[testenv:mypy]
deps = mypy==1.11.0
commands = mypy .
commands = mypy --install-types --non-interactive .
skip_install = True
[tool:isort]