Fix bugs in example of how to use with pipenv #607
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The current example of how to use
@actions/cache
with pipenv has twoproblems:
The cached virtualenv that pipenv creates has
bin/python
as a symlinkinto paths like
/opt/hostedtoolcache/Python/3.7.11
that explicitlyinclude the patch version of python. When the cache is restored onto a
machine running a slightly different version of python, e.g., when
GitHub upgrades its runners from python 3.7.10 to 3.7.11, then any
attempt to run python in the workflow mysteriously fails with errors
like
Failed to load paths: /bin/sh: 1: /home/runner/.local/share/virtualenvs/myrepo-sOIMCiTO/bin/python: not found
.Therefore the patch version of python should be included in the cache
key.
pipenv --install
has the unfortunate behaviour of not cleaning outany pre-existing packages. That is, if the
Pipfile
first containsdependencies on
foo
andbar
, and then you removebar
from thePipfile
and runpipenv install
again,bar
is still included inthe virtualenv.
This can cause false-positive test failures: when a dependency is
removed from the
Pipfile
but there is still code that relies on theremoved dependency, tests can still pass if the dependency comes from
the cache based on a previous revision of
Pipfile.lock
.Therefore
restore-keys
should not be set.This PR attempts to address both of these issues.