sets log level info in pytest call

This commit is contained in:
hajdul88 2025-12-12 09:37:45 +01:00
parent 96900e18a7
commit 6a8307a1c9

View file

@ -54,7 +54,7 @@ jobs:
GRAPH_DATABASE_PROVIDER: 'kuzu' GRAPH_DATABASE_PROVIDER: 'kuzu'
VECTOR_DB_PROVIDER: 'lancedb' VECTOR_DB_PROVIDER: 'lancedb'
DB_PROVIDER: 'sqlite' DB_PROVIDER: 'sqlite'
run: uv run pytest cognee/tests/test_search_db.py -v run: uv run pytest cognee/tests/test_search_db.py -v --log-level=INFO
run-neo4j-lance-sqlite-search-tests: run-neo4j-lance-sqlite-search-tests:
name: Search test for Neo4j/LanceDB/Sqlite (Python ${{ matrix.python-version }}) name: Search test for Neo4j/LanceDB/Sqlite (Python ${{ matrix.python-version }})
@ -100,7 +100,7 @@ jobs:
GRAPH_DATABASE_URL: ${{ steps.neo4j.outputs.neo4j-url }} GRAPH_DATABASE_URL: ${{ steps.neo4j.outputs.neo4j-url }}
GRAPH_DATABASE_USERNAME: ${{ steps.neo4j.outputs.neo4j-username }} GRAPH_DATABASE_USERNAME: ${{ steps.neo4j.outputs.neo4j-username }}
GRAPH_DATABASE_PASSWORD: ${{ steps.neo4j.outputs.neo4j-password }} GRAPH_DATABASE_PASSWORD: ${{ steps.neo4j.outputs.neo4j-password }}
run: uv run pytest cognee/tests/test_search_db.py -v run: uv run pytest cognee/tests/test_search_db.py -v --log-level=INFO
run-kuzu-pgvector-postgres-search-tests: run-kuzu-pgvector-postgres-search-tests:
name: Search test for Kuzu/PGVector/Postgres (Python ${{ matrix.python-version }}) name: Search test for Kuzu/PGVector/Postgres (Python ${{ matrix.python-version }})
@ -159,7 +159,7 @@ jobs:
DB_PORT: 5432 DB_PORT: 5432
DB_USERNAME: cognee DB_USERNAME: cognee
DB_PASSWORD: cognee DB_PASSWORD: cognee
run: uv run pytest cognee/tests/test_search_db.py -v run: uv run pytest cognee/tests/test_search_db.py -v --log-level=INFO
run-neo4j-pgvector-postgres-search-tests: run-neo4j-pgvector-postgres-search-tests:
name: Search test for Neo4j/PGVector/Postgres (Python ${{ matrix.python-version }}) name: Search test for Neo4j/PGVector/Postgres (Python ${{ matrix.python-version }})
@ -225,4 +225,4 @@ jobs:
DB_PORT: 5432 DB_PORT: 5432
DB_USERNAME: cognee DB_USERNAME: cognee
DB_PASSWORD: cognee DB_PASSWORD: cognee
run: uv run pytest cognee/tests/test_search_db.py -v run: uv run pytest cognee/tests/test_search_db.py -v --log-level=INFO