Update tests for vector_store_code

This commit is contained in:
Alex Selimov 2025-07-14 14:26:56 -04:00
parent 24bfef99a2
commit 0bff803b91
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
7 changed files with 210 additions and 10 deletions

10
tests/conftest.py Normal file
View file

@ -0,0 +1,10 @@
import pytest
from reviewllama.configs import create_ollama_config
@pytest.fixture
def ollama_config():
return create_ollama_config(
"gemma3:4b", "localhost:11434", "You are a helpful assistant.", 0.0
)