Skip to content

Commit 1ce7f69

Browse files
SonAIengineclaude
andcommitted
fix: CI 테스트에서 외부 인프라 의존 백엔드 제외 (Neo4j/Qdrant/MinIO/PostgreSQL)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8964b49 commit 1ce7f69

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,13 @@ jobs:
5757
run: uv sync --extra dev --extra sqlite
5858

5959
- name: Run tests
60-
run: uv run pytest tests/ --ignore=tests/test_backend_postgresql.py --ignore=tests/benchmark --ignore=tests/qa -x -q
60+
run: |
61+
uv run pytest tests/ \
62+
--ignore=tests/test_backend_postgresql.py \
63+
--ignore=tests/test_backend_neo4j.py \
64+
--ignore=tests/test_backend_qdrant.py \
65+
--ignore=tests/test_backend_minio.py \
66+
--ignore=tests/test_backend_composite.py \
67+
--ignore=tests/benchmark \
68+
--ignore=tests/qa \
69+
-x -q

0 commit comments

Comments
 (0)