Files
iptv-manager-service/pytest.ini
Stefano cebbb9c1a8
All checks were successful
AWS Deploy on Push / build (push) Successful in 1m4s
Added pytest configuration and first 4 unit tests
2025-05-27 17:37:05 -05:00

19 lines
391 B
INI

[pytest]
testpaths = tests
python_files = test_*.py
python_functions = test_*
asyncio_mode = auto
filterwarnings =
ignore::DeprecationWarning:botocore.auth
# Coverage configuration
addopts =
--cov=app
--cov-report=term-missing
# Test markers
markers =
slow: mark tests as slow running
integration: integration tests
unit: unit tests
db: tests requiring database