test: add unit tests for handler-base

- tests/conftest.py: Pytest fixtures and configuration
- tests/unit/test_config.py: Settings tests
- tests/unit/test_nats_client.py: NATS client tests
- tests/unit/test_health.py: Health server tests
- tests/unit/test_clients.py: Service client tests
- pytest.ini: Pytest configuration
This commit is contained in:
2026-02-02 06:23:44 -05:00
parent 99c97b7973
commit 849da661e6
7 changed files with 500 additions and 0 deletions

7
pytest.ini Normal file
View File

@@ -0,0 +1,7 @@
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
asyncio_mode = auto
addopts = -v --tb=short