fix: pre-commit issues: non executable shebang file and removal of @pytest.mark.asyncio decorator (#3397)

# What does this PR do?
<!-- Provide a short summary of what this PR does and why. Link to
relevant issues if applicable. -->
Fix pre-commit issues: non executable shebang file, @pytest.mark.asyncio
decorator

<!-- If resolving an issue, uncomment and update the line below -->
<!-- Closes #[issue-number] -->

## Test Plan
<!-- Describe the tests you ran to verify your changes with result
summaries. *Provide clear instructions so the plan can be easily
re-executed.* -->
This commit is contained in:
Akram Ben Aissi 2025-09-10 15:27:35 +02:00 committed by GitHub
parent 1671431310
commit c836fa29e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 1 deletions

0
scripts/get_setup_env.py Normal file → Executable file
View file

View file

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