27 lines
641 B
INI
27 lines
641 B
INI
[tool:pytest]
|
|
asyncio_mode = auto
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts = -v --tb=short --strict-markers --strict-config
|
|
markers =
|
|
asyncio: mark test as async
|
|
integration: mark test as integration test
|
|
unit: mark test as unit test
|
|
|
|
[flake8]
|
|
max-line-length = 88
|
|
extend-ignore = E203, W503
|
|
exclude = .git,__pycache__,.pytest_cache,.venv,venv,env
|
|
|
|
[mypy]
|
|
python_version = 3.13
|
|
ignore_missing_imports = True
|
|
follow_imports = silent
|
|
warn_redundant_casts = True
|
|
warn_unused_ignores = True
|
|
disallow_any_generics = True
|
|
check_untyped_defs = True
|
|
no_implicit_reexport = True
|