Aniworld/pytest.ini
Lukas Pupka-Lipinski f550ec05e3 Set up test directory structure and pytest configuration
- Created unit, integration, and e2e test directories
- Added conftest.py with common fixtures and mocks
- Added pytest.ini with test configuration and markers
2025-10-06 10:43:04 +02:00

18 lines
393 B
INI

[tool:pytest]
testpaths = src/tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
markers =
unit: Unit tests
integration: Integration tests
e2e: End-to-end tests
slow: Slow running tests
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning