pytest.ini 383 B

1234567891011121314151617181920212223
  1. [pytest]
  2. # Pytest configuration for backend tests
  3. # Test discovery patterns
  4. python_files = test_*.py
  5. python_classes = Test*
  6. python_functions = test_*
  7. # Test paths
  8. testpaths = test
  9. # Output options
  10. addopts =
  11. -v
  12. --strict-markers
  13. --tb=short
  14. --disable-warnings
  15. # Markers
  16. markers =
  17. unit: Unit tests
  18. integration: Integration tests
  19. slow: Slow running tests