fix: Resolve issue with gh actions not installing optional packages
Add install of optional databases packages for database gh actions Fix COG-595
This commit is contained in:
parent
f41228aa51
commit
13b79320b6
3 changed files with 3 additions and 3 deletions
2
.github/workflows/test_neo4j.yml
vendored
2
.github/workflows/test_neo4j.yml
vendored
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
installer-parallel: true
|
||||
|
||||
- name: Install dependencies
|
||||
run: poetry install --no-interaction
|
||||
run: poetry install -E neo4j --no-interaction
|
||||
|
||||
- name: Run default Neo4j
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/test_qdrant.yml
vendored
2
.github/workflows/test_qdrant.yml
vendored
|
|
@ -47,7 +47,7 @@ jobs:
|
|||
installer-parallel: true
|
||||
|
||||
- name: Install dependencies
|
||||
run: poetry install --no-interaction
|
||||
run: poetry install -E qdrant --no-interaction
|
||||
|
||||
- name: Run default Qdrant
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/test_weaviate.yml
vendored
2
.github/workflows/test_weaviate.yml
vendored
|
|
@ -47,7 +47,7 @@ jobs:
|
|||
installer-parallel: true
|
||||
|
||||
- name: Install dependencies
|
||||
run: poetry install --no-interaction
|
||||
run: poetry install -E weaviate --no-interaction
|
||||
|
||||
- name: Run default Weaviate
|
||||
env:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue