fix: e2e test fix
This commit is contained in:
parent
b179a77270
commit
b82e48c227
1 changed files with 7 additions and 9 deletions
16
.github/workflows/e2e_tests.yml
vendored
16
.github/workflows/e2e_tests.yml
vendored
|
|
@ -266,10 +266,13 @@ jobs:
|
||||||
run: uv run python ./cognee/tests/test_edge_ingestion.py
|
run: uv run python ./cognee/tests/test_edge_ingestion.py
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
run_concurrent_subprocess_access_test:
|
run_concurrent_subprocess_access_test:
|
||||||
name: Concurrent Subprocess access test
|
name: Concurrent Subprocess access test
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
if: ${{ inputs.databases == 'all' || contains(inputs.databases, 'kuzu/pgvector/postgres') }}
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: pgvector/pgvector:pg17
|
image: pgvector/pgvector:pg17
|
||||||
|
|
@ -285,20 +288,15 @@ jobs:
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
steps:
|
steps:
|
||||||
- name: Check out
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Cognee Setup
|
- name: Cognee Setup
|
||||||
uses: ./.github/actions/cognee_setup
|
uses: ./.github/actions/cognee_setup
|
||||||
with:
|
with:
|
||||||
python-version: ${{ inputs.python-version }}
|
python-version: '3.11.x'
|
||||||
extra-dependencies: "postgres"
|
extra-dependencies: "postgres"
|
||||||
|
|
||||||
- name: Dependencies already installed
|
|
||||||
run: echo "Dependencies already installed in setup"
|
|
||||||
|
|
||||||
- name: Run Concurrent subprocess access test (Kuzu/Lancedb/Postgres)
|
- name: Run Concurrent subprocess access test (Kuzu/Lancedb/Postgres)
|
||||||
env:
|
env:
|
||||||
ENV: dev
|
ENV: dev
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue