Newer
Older
[tox]
envlist = unittest,pep8
skipsdist = True
[flake8]
exclude =
venv,
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs
data
generated
max-complexity = 10
min_python_version = 3.8
max-line-length = 88
select = I,C,E,F,W,B,B950,TYP,T
ignore = E231, W503
[testenv:pep8]
deps =
flake8
flake8-type-annotations
flake8-typing-imports
basepython = python
commands =
flake8 {posargs}