18 lines
304 B
INI
18 lines
304 B
INI
[tox]
|
|
envlist = py39,py310,py311,py312
|
|
skip_missing_interpreters = true
|
|
|
|
[testenv]
|
|
deps = pytest
|
|
commands = pytest tests/ -v
|
|
|
|
[flake8]
|
|
max-line-length = 100
|
|
exclude = .git,__pycache__,build,dist
|
|
|
|
[mypy]
|
|
python_version = 3.9
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
ignore_missing_imports = true
|