Implement WrapperHandler for managing multiple news API wrappers; add tests for wrapper functionality

This commit is contained in:
2025-09-30 02:55:09 +02:00
parent 6aa9d4969f
commit 912a9b9c8d
5 changed files with 126 additions and 3 deletions

View File

@@ -22,6 +22,7 @@ def pytest_configure(config:pytest.Config):
("ollama_qwen", "marks tests that use Ollama Qwen model"),
("news", "marks tests that use news"),
("limited", "marks tests that have limited execution due to API constraints"),
("wrapper", "marks tests for wrapper handler"),
]
for marker in markers:
line = f"{marker[0]}: {marker[1]}"