Include Python version in pip cache key (#303)

This commit is contained in:
Hugo van Kemenade
2022-01-31 12:42:08 +02:00
committed by GitHub
parent 156361d073
commit ba33a692f1
4 changed files with 13 additions and 13 deletions

View File

@ -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}`
);
}
);