fix: Remove @pytest.mark.asyncio decorator from test_rag_query.py

The pytest configuration already has async-mode=auto enabled, so the
@pytest.mark.asyncio decorator is not needed and causes pre-commit to fail.
This commit is contained in:
Akram Ben Aissi 2025-09-10 13:01:19 +02:00
parent 340dc7f464
commit f73d126d52

View file

@ -82,7 +82,6 @@ class TestRagQuery:
with pytest.raises(ValueError):
RAGQueryConfig(mode="wrong_mode")
@pytest.mark.asyncio
async def test_query_adds_vector_db_id_to_chunk_metadata(self):
rag_tool = MemoryToolRuntimeImpl(
config=MagicMock(),