diff options
author | Chris Patterson <cpatterson@microsoft.com> | 2022-02-14 12:09:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 11:09:01 -0600 |
commit | 9ba3ca6ce5013207737e431f52735c7eda3a2fbb (patch) | |
tree | 3f240e45f3c2f7d5954234738cd3a92cdecd2417 /.travis.yml | |
parent | 470b4a574514cf87f90682ac2bdd71b5fbbe6139 (diff) | |
download | vyos-cloud-init-9ba3ca6ce5013207737e431f52735c7eda3a2fbb.tar.gz vyos-cloud-init-9ba3ca6ce5013207737e431f52735c7eda3a2fbb.zip |
mypy: introduce type checking (#1254)
All currently failing modules are excluded from reporting
errors using follow-imports=silent and an exclusion list.
Future work can whittle down this failing list. This change will
start enforcing new modules and those currently passing.
Includes some minor alphabetical reordering in tox.ini.
Signed-off-by: Chris Patterson <cpatterson@microsoft.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 2e79f2b7..f655fa50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -133,6 +133,8 @@ matrix: - python: 3.6 env: TOXENV=flake8 - python: 3.6 + env: TOXENV=mypy + - python: 3.6 env: TOXENV=pylint - python: 3.6 env: TOXENV=black |