15 lines
484 B
INI
15 lines
484 B
INI
|
|
[tool:pytest]
|
||
|
|
minversion = 6.0
|
||
|
|
addopts = -ra -q --strict-markers --strict-config
|
||
|
|
testpaths = tests
|
||
|
|
python_files = test_*.py
|
||
|
|
python_classes = Test*
|
||
|
|
python_functions = test_*
|
||
|
|
asyncio_mode = auto
|
||
|
|
markers =
|
||
|
|
unit: Unit tests that don't require external dependencies
|
||
|
|
integration: Integration tests that require database/API
|
||
|
|
slow: Tests that take longer than 1 second to run
|
||
|
|
api: API endpoint tests
|
||
|
|
analytics: Analytics and insights tests
|
||
|
|
hooks: Hook simulation tests
|