| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Mypy static type checker plugin for pytest
You can install "pytest-mypy" via pip from PyPI:
$ pip install pytest-mypyYou can enable pytest-mypy with the --mypy flag:
$ py.test --mypy test_*.pyMypy supports reading configuration settings from a mypy.ini file. Alternatively, the plugin can be configured in a conftest.py to invoke mypy with extra options:
def pytest_configure(config):
plugin = config.pluginmanager.getplugin('mypy')
plugin.mypy_argv.append('--check-untyped-defs')You can restrict your test run to only perform mypy checks and not any other tests by using the -m option:
py.test --mypy -m mypy test_*.pyDistributed under the terms of the MIT license, "pytest-mypy" is free and open source software
If you encounter any problems, please file an issue along with a detailed description.
Daniel Bader – @dbader_org – https://dbader.org – mail@dbader.org
| Back | FazBrowse Home | New Git URL |