File size: 740 Bytes
4f625a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[tool:pytest]
testpaths = tests
python_files = test_*.py *.test.py
python_classes = Test*
python_functions = test_*
addopts = 
    -v
    --tb=short
    --strict-markers
    --disable-warnings
    --cov=core
    --cov=billing
    --cov-report=term-missing
    --cov-report=html
    --cov-report=xml
    --cov-fail-under=60
markers =
    unit: Unit tests (fast, no external dependencies)
    integration: Integration tests (may require database/external services)
    slow: Slow tests
    api: API endpoint tests
    llm: LLM integration tests (requires API keys)
    asyncio: Async tests
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
filterwarnings =
    ignore::DeprecationWarning
    ignore::PendingDeprecationWarning