/ pytest.ini
pytest.ini
1 [pytest] 2 testpaths = tests 3 python_files = test_*.py 4 python_classes = Test* 5 python_functions = test_* 6 addopts = 7 -v 8 --tb=short 9 --strict-markers 10 --cov=. 11 --cov-report=html:test-output/coverage-html 12 --cov-report=term-missing 13 --cov-config=.coveragerc 14 asyncio_mode = auto 15 markers = 16 unit: Unit tests for individual rules 17 integration: Integration tests for FastAPI endpoints 18 slow: Tests that take more than 1 second