fix: unintentionally uninstall required deps when "uv sync"
This commit is contained in:
parent
1ab332828f
commit
bcdbadc468
5 changed files with 14 additions and 23 deletions
5
.github/workflows/db_examples_tests.yml
vendored
5
.github/workflows/db_examples_tests.yml
vendored
|
|
@ -86,9 +86,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ inputs.python-version }}
|
python-version: ${{ inputs.python-version }}
|
||||||
|
|
||||||
- name: Install Kuzu extra
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync
|
|
||||||
|
|
||||||
- name: Run Kuzu Example
|
- name: Run Kuzu Example
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
15
.github/workflows/e2e_tests.yml
vendored
15
.github/workflows/e2e_tests.yml
vendored
|
|
@ -221,9 +221,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: '3.11.x'
|
python-version: '3.11.x'
|
||||||
|
|
||||||
- name: Install specific graph db dependency
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync
|
|
||||||
|
|
||||||
- name: Run parallel databases test
|
- name: Run parallel databases test
|
||||||
env:
|
env:
|
||||||
|
|
@ -250,9 +249,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: '3.11.x'
|
python-version: '3.11.x'
|
||||||
|
|
||||||
- name: Install specific graph db dependency
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync
|
|
||||||
|
|
||||||
- name: Run parallel databases test
|
- name: Run parallel databases test
|
||||||
env:
|
env:
|
||||||
|
|
@ -279,9 +277,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: '3.11.x'
|
python-version: '3.11.x'
|
||||||
|
|
||||||
- name: Install specific graph db dependency
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync
|
|
||||||
|
|
||||||
- name: Run graph edges test
|
- name: Run graph edges test
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
5
.github/workflows/graph_db_tests.yml
vendored
5
.github/workflows/graph_db_tests.yml
vendored
|
|
@ -28,9 +28,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ inputs.python-version }}
|
python-version: ${{ inputs.python-version }}
|
||||||
|
|
||||||
- name: Install specific db dependency
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync
|
|
||||||
|
|
||||||
- name: Run Kuzu Tests
|
- name: Run Kuzu Tests
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
5
.github/workflows/search_db_tests.yml
vendored
5
.github/workflows/search_db_tests.yml
vendored
|
|
@ -28,9 +28,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ inputs.python-version }}
|
python-version: ${{ inputs.python-version }}
|
||||||
|
|
||||||
- name: Install specific db dependency
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync
|
|
||||||
|
|
||||||
- name: Run Kuzu search Tests
|
- name: Run Kuzu search Tests
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
7
.github/workflows/weighted_edges_tests.yml
vendored
7
.github/workflows/weighted_edges_tests.yml
vendored
|
|
@ -61,10 +61,8 @@ jobs:
|
||||||
database: ['kuzu', 'neo4j']
|
database: ['kuzu', 'neo4j']
|
||||||
include:
|
include:
|
||||||
- database: kuzu
|
- database: kuzu
|
||||||
install_extra: ""
|
|
||||||
graph_db_provider: "kuzu"
|
graph_db_provider: "kuzu"
|
||||||
- database: neo4j
|
- database: neo4j
|
||||||
install_extra: "--extra neo4j"
|
|
||||||
graph_db_provider: "neo4j"
|
graph_db_provider: "neo4j"
|
||||||
env:
|
env:
|
||||||
LLM_PROVIDER: openai
|
LLM_PROVIDER: openai
|
||||||
|
|
@ -88,9 +86,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
|
|
||||||
- name: Install Database Dependencies
|
- name: Dependencies already installed
|
||||||
run: |
|
run: echo "Dependencies already installed in setup"
|
||||||
uv sync ${{ matrix.install_extra }}
|
|
||||||
|
|
||||||
- name: Run Weighted Edges Tests
|
- name: Run Weighted Edges Tests
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue