Fix cert issues in Virtual Environments

This commit is contained in:
Reinier Criel 2025-11-26 15:48:29 -08:00
parent 9c55a95eb9
commit f5af26092a
3 changed files with 61 additions and 22 deletions

View file

@ -12,6 +12,10 @@ describe("E2E: safe-chain setup-ci command for pip/pip3", () => {
beforeEach(async () => {
container = new DockerTestContainer();
await container.start();
// Clear pip cache before each test to ensure fresh downloads through proxy
const shell = await container.openShell("zsh");
await shell.runCommand("pip3 cache purge");
});
afterEach(async () => {