Disable type checking for now.

This commit is contained in:
Felix Fontein 2025-10-12 22:32:40 +02:00
parent 17e30adb93
commit 16b5bfa27b
2 changed files with 8 additions and 8 deletions

View File

@ -3,16 +3,16 @@
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
[mypy] [mypy]
check_untyped_defs = True # check_untyped_defs = True -- for later
disallow_untyped_defs = True # disallow_untyped_defs = True -- for later
# strict = True -- only try to enable once everything (including dependencies!) is typed # strict = True -- only try to enable once everything (including dependencies!) is typed
strict_equality = True # strict_equality = True -- for later
strict_bytes = True # strict_bytes = True -- for later
warn_redundant_casts = True # warn_redundant_casts = True -- for later
# warn_return_any = True # warn_return_any = True -- for later
warn_unreachable = True # warn_unreachable = True -- for later
[mypy-ansible.*] [mypy-ansible.*]
# ansible-core has partial typing information # ansible-core has partial typing information

View File

@ -27,7 +27,7 @@ run_yamllint = true
yamllint_config = ".yamllint" yamllint_config = ".yamllint"
yamllint_config_plugins = ".yamllint-docs" yamllint_config_plugins = ".yamllint-docs"
yamllint_config_plugins_examples = ".yamllint-examples" yamllint_config_plugins_examples = ".yamllint-examples"
run_mypy = true run_mypy = false
mypy_ansible_core_package = "ansible-core>=2.19.0" mypy_ansible_core_package = "ansible-core>=2.19.0"
mypy_config = ".mypy.ini" mypy_config = ".mypy.ini"
mypy_extra_deps = [ mypy_extra_deps = [