Skip to content

Commit

Permalink
Added Poetry cache clearing to PR E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthomas93 committed Aug 14, 2024
1 parent cdb9ad5 commit afa80af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pr-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
e2e-tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
max-parallel: 2
matrix:
python-version: ['3.8', '3.12']
neo4j-version:
Expand Down Expand Up @@ -87,6 +87,11 @@ jobs:
- 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
run: |
df -h
- name: Install root project
run: poetry install --no-interaction
- name: Install dependencies
Expand Down

0 comments on commit afa80af

Please sign in to comment.