diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2dfd088..5b3039c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -37,4 +37,4 @@ jobs: run: ruff check . - name: Run Pytest - run: pytest + run: pytest -s diff --git a/src/tests/test_api.py b/src/tests/test_api.py index 88c3dca..6cb89f1 100644 --- a/src/tests/test_api.py +++ b/src/tests/test_api.py @@ -20,6 +20,7 @@ def test_health_endpoint(mock_embedding_service, mock_chroma_store): response = client.get("/healthz") assert response.status_code == 200 data = response.json() + print("Health check response:", data) assert "status" in data assert data["status"] == "healthy"