[pytest] # Pytest configuration for interactive-agent-handler tests # Test discovery patterns python_files = test_*.py python_classes = Test* python_functions = test_* # Async support asyncio_mode = auto # Output options addopts = -v --tb=short --strict-markers --disable-warnings # Coverage options (when using --cov) # Run with: pytest --cov=. --cov-report=html # Markers markers = asyncio: mark test as async unit: mark test as unit test integration: mark test as integration test