20 lines
463 B
INI
20 lines
463 B
INI
[tool:pytest]
|
|||
|
|
testpaths = tests
|
||
|
|
python_files = test_*.py *_test.py
|
||
|
|
python_classes = Test*
|
||
|
|
python_functions = test_*
|
||
|
|
addopts =
|
||
|
|
--verbose
|
||
|
|
--tb=short
|
||
|
|
--cov=.
|
||
|
|
--cov-report=term-missing
|
||
|
|
--cov-report=html:htmlcov
|
||
|
|
--cov-exclude=tests/*
|
||
|
|
--cov-exclude=__pycache__/*
|
||
|
|
--cov-exclude=.kiro/*
|
||
|
|
asyncio_mode = auto
|
||
|
|
markers =
|
||
|
|
unit: Unit tests
|
||
|
|
integration: Integration tests
|
||
|
|
property: Property-based tests
|
||
|
|
slow: Slow running tests
|