Skip to content

Commit

Permalink
ci: force poetry-core update in downstream tests
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering authored and neersighted committed Sep 11, 2022
1 parent 37cee90 commit 50f5fd3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ jobs:

- name: Install downstream dependencies
working-directory: ./poetry
run: poetry install
run: |
# force update of directory dependency in cached venv
# (even if directory dependency with same version is already installed)
poetry run pip uninstall -y poetry-core
poetry install
# TODO: mark run as success even when this fails and add comment to PR instead
- name: Run downstream test suite
Expand Down

0 comments on commit 50f5fd3

Please sign in to comment.