| 1234567891011121314151617181920212223 |
- [pytest]
- # Pytest configuration for backend tests
- # Test discovery patterns
- python_files = test_*.py
- python_classes = Test*
- python_functions = test_*
- # Test paths
- testpaths = test
- # Output options
- addopts =
- -v
- --strict-markers
- --tb=short
- --disable-warnings
- # Markers
- markers =
- unit: Unit tests
- integration: Integration tests
- slow: Slow running tests
|