We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8823c8c commit 27638daCopy full SHA for 27638da
.github/workflows/ci.yml
@@ -41,5 +41,15 @@ jobs:
41
DISABLE_KUZU: '1'
42
DISABLE_NEPTUNE: '1'
43
run: |
44
+ set -e
45
uv run pytest tests/unit/orchestration/test_bulk_serialization.py tests/unit/search/test_search_utils_filters.py
46
+
47
+ set +e
48
uv run pytest tests/integration/core/shared/test_ingestion_pipeline.py::test_add_episode_persists_nodes_and_edges
49
+ status=$?
50
51
+ if [ "$status" -eq 5 ]; then
52
+ echo "Integration test suite skipped (no collectors)."
53
+ elif [ "$status" -ne 0 ]; then
54
+ exit "$status"
55
+ fi
0 commit comments