remove mypy
Some checks failed
ci/woodpecker/push/tests Pipeline failed

Signed-off-by: Ivan Schaller <ivan@schaller.sh>
This commit is contained in:
Ivan Schaller 2023-02-19 18:45:53 +01:00
parent 32d5f8a9a1
commit 1f244ef2d6
Signed by: olofvndrhr
GPG key ID: 2A6BE07D99C8C205
2 changed files with 0 additions and 23 deletions

View file

@ -26,13 +26,6 @@ pipeline:
commands:
- just test_black
# check static typing - python
test-mypy:
image: cr.44net.ch/ci-plugins/tests
pull: true
commands:
- just test_mypy
# check static typing - python
test-pyright:
image: cr.44net.ch/ci-plugins/tests

View file

@ -68,22 +68,6 @@ dependencies = [
"ruff>=0.0.247",
]
# mypy
[tool.mypy]
strict = true
python_version = "3.9"
disallow_untyped_defs = false
follow_imports = "normal"
ignore_missing_imports = true
warn_no_return = false
warn_unused_ignores = true
show_error_context = true
show_column_numbers = true
show_error_codes = true
pretty = true
no_implicit_optional = false
# pyright
[tool.pyright]