Spaces:
Running
Running
File size: 319 Bytes
b7833be | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [pytest]
# Pytest configuration for AIDA tests
# Add AIDA directory to Python path
pythonpath = .
# Test discovery patterns
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Enable asyncio mode for async tests
asyncio_mode = auto
# Verbose output by default
addopts = -v
|