From c836fa29e3b9a587734764cc025551bce68fc349 Mon Sep 17 00:00:00 2001 From: Akram Ben Aissi Date: Wed, 10 Sep 2025 15:27:35 +0200 Subject: [PATCH] fix: pre-commit issues: non executable shebang file and removal of @pytest.mark.asyncio decorator (#3397) # What does this PR do? Fix pre-commit issues: non executable shebang file, @pytest.mark.asyncio decorator ## Test Plan --- scripts/get_setup_env.py | 0 tests/unit/rag/test_rag_query.py | 1 - 2 files changed, 1 deletion(-) mode change 100644 => 100755 scripts/get_setup_env.py diff --git a/scripts/get_setup_env.py b/scripts/get_setup_env.py old mode 100644 new mode 100755 diff --git a/tests/unit/rag/test_rag_query.py b/tests/unit/rag/test_rag_query.py index 183b4d049..a45b66f02 100644 --- a/tests/unit/rag/test_rag_query.py +++ b/tests/unit/rag/test_rag_query.py @@ -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(),