mirror of
https://github.com/actions/setup-python
synced 2025-04-05 14:59:42 +00:00
Include Python version in pip cache key (#303)
This commit is contained in:
committed by
GitHub
parent
156361d073
commit
ba33a692f1
@ -92,13 +92,9 @@ describe('restore-cache', () => {
|
||||
dependencyFile
|
||||
);
|
||||
await cacheDistributor.restoreCache();
|
||||
let pythonKey = '';
|
||||
if (packageManager === 'pipenv') {
|
||||
pythonKey = `python-${pythonVersion}-`;
|
||||
}
|
||||
|
||||
expect(infoSpy).toHaveBeenCalledWith(
|
||||
`Cache restored from key: setup-python-${process.env['RUNNER_OS']}-${pythonKey}${packageManager}-${fileHash}`
|
||||
`Cache restored from key: setup-python-${process.env['RUNNER_OS']}-python-${pythonVersion}-${packageManager}-${fileHash}`
|
||||
);
|
||||
}
|
||||
);
|
||||
|
Reference in New Issue
Block a user