Skip to content

Commit

Permalink
Removed redudant poetry installations from PR E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthomas93 committed Aug 14, 2024
1 parent afa80af commit 8705e62
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/pr-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,15 @@ jobs:
df -h
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
run: poetry install --no-interaction --no-cache --with dev
- name: Show disk usage after dependency installation
run: |
df -h
- name: Clear Poetry cache
run: poetry cache clear --all .
- name: Show disk usage after Poetry cache clear
- name: Show disk usage after Poetry installation
run: |
df -h
- name: Install root project
run: poetry install --no-interaction
- name: Install dependencies
run: poetry install --with dev
- name: Wait for Weaviate to start
shell: bash
run: |
Expand Down

0 comments on commit 8705e62

Please sign in to comment.