[pytest] # Pytest configuration testpaths = src/api/tests python_files = test_*.py python_classes = Test* python_functions = test_* asyncio_mode = auto # Add src/api to Python path for imports pythonpath = src/api # Logging log_cli = true log_cli_level = INFO log_cli_format = %(asctime)s [%(levelname)8s] %(message)s log_cli_date_format = %Y-%m-%d %H:%M:%S # Coverage options (if using pytest-cov) addopts = --verbose --strict-markers --tb=short --color=yes # Markers markers = asyncio: mark test as async unit: mark test as unit test integration: mark test as integration test slow: mark test as slow running