We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37cee90 commit 50f5fd3Copy full SHA for 50f5fd3
.github/workflows/downstream.yml
@@ -58,7 +58,11 @@ jobs:
58
59
- name: Install downstream dependencies
60
working-directory: ./poetry
61
- run: poetry install
+ run: |
62
+ # force update of directory dependency in cached venv
63
+ # (even if directory dependency with same version is already installed)
64
+ poetry run pip uninstall -y poetry-core
65
+ poetry install
66
67
# TODO: mark run as success even when this fails and add comment to PR instead
68
- name: Run downstream test suite
0 commit comments