feat(v0.1.0): project foundation with logging and config

This commit is contained in:
0x_n3m0_
2026-01-05 11:21:51 +02:00
parent 090974259e
commit 2c299eb37c
8 changed files with 55 additions and 713546 deletions

View File

@@ -129,7 +129,11 @@ def sample_ohlcv_data():
@pytest.fixture(autouse=True)
def reset_config():
"""Reset global config cache before each test."""
"""Reset global config cache and logging state before each test."""
import src.config.config_loader as config_module
config_module._config = None
# Reset logging configuration state
from src.logging import reset_logging_config
reset_logging_config()