34ecf5ab91
mypy is an experimental optional static type checker for Python that aims to combine the benefits of dynamic (or "duck") typing and static typing. While still in development, most features are supported and it's already being used by real world projects like Sphinx. Let's start small by integrating it into some of the interfaces that nova exposes. We can further build upon this if it works out. This change sets up the boilerplate necessary to use mypy in nova. Type annotations are not included for any module - these will be added separately. We're calling mypy by way of a script, as this allows us to store a list of files that we have converted while we're in the process of adding type annotations where necessary. Change-Id: I75ab46a6768c4ca2050fdde2b7f8eeb90724c8c6 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
54 lines
685 B
Plaintext
54 lines
685 B
Plaintext
*.DS_Store
|
|
*.egg*
|
|
*.log
|
|
*.mo
|
|
*.pyc
|
|
*.swo
|
|
*.swp
|
|
*.sqlite
|
|
*~
|
|
.autogenerated
|
|
.coverage
|
|
.mypy_cache
|
|
.nova-venv
|
|
.project
|
|
.pydevproject
|
|
.ropeproject
|
|
.stestr/
|
|
.testrepository/
|
|
.tox
|
|
.idea
|
|
.venv
|
|
AUTHORS
|
|
Authors
|
|
build-stamp
|
|
tags
|
|
build/*
|
|
CA/
|
|
ChangeLog
|
|
coverage.xml
|
|
cover/*
|
|
covhtml/*
|
|
dist/*
|
|
doc/source/api/*
|
|
doc/build/*
|
|
api-guide/build/*
|
|
api-ref/build/*
|
|
etc/nova/nova.conf.sample
|
|
etc/nova/policy.yaml.sample
|
|
etc/nova/policy.yaml.merged
|
|
instances
|
|
keeper
|
|
keys
|
|
local_settings.py
|
|
MANIFEST
|
|
nosetests.xml
|
|
nova/tests/cover/*
|
|
nova/vcsversion.py
|
|
tools/conf/nova.conf*
|
|
doc/source/_static/nova.conf.sample
|
|
doc/source/_static/nova.policy.yaml.sample
|
|
|
|
# Files created by releasenotes build
|
|
releasenotes/build
|