mirror of
https://git.proxmox.com/git/pve-esxi-import-tools
synced 2025-04-28 14:11:28 +00:00

This commit adds mypy [0] as build dependency and ensures it is invoked during the package build process. mypy can also be manually invoked via `make lint`. A mypy.ini file [1] is also added to disable errors regarding missing type stubs for pyVmomi and pyVim. [0]: https://www.mypy-lang.org/ [1]: https://mypy.readthedocs.io/en/stable/config_file.html Signed-off-by: Max Carrara <m.carrara@proxmox.com>
9 lines
100 B
INI
9 lines
100 B
INI
[mypy]
|
|
|
|
[mypy-pyVmomi]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pyVim.*]
|
|
ignore_missing_imports = True
|
|
|