You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a project with the specified configuration parameter, the orb will make no use of the cache and will reinstall dependencies every single time. This is because the orb hardcodes the poetry virtualenv location, rather than determining it based on that configuration setting.
Expected behavior:
Cache should be used regardless of venv location configuration within poetry
Additional Information:
This should be relatively easy to fix, so I should have a PR addressing it shortly.
The text was updated successfully, but these errors were encountered:
I was having the same issue and the following worked for me:
- python/install-packages:
pkg-manager: poetry# Override the venv pathvenv-path: '["/home/circleci/project/.venv"]'# I had to clear the cache-version# otherwise, the "Saving cache" step would skip the new "venv-path" valuecache-version: v2
Orb version: 2.1.1
What happened:
In a project with the specified configuration parameter, the orb will make no use of the cache and will reinstall dependencies every single time. This is because the orb hardcodes the poetry virtualenv location, rather than determining it based on that configuration setting.
Expected behavior:
Cache should be used regardless of venv location configuration within poetry
Additional Information:
This should be relatively easy to fix, so I should have a PR addressing it shortly.
The text was updated successfully, but these errors were encountered: