Make sure e2e test clears cache

This commit is contained in:
Reinier Criel 2025-12-05 09:39:51 -08:00
parent 15cc6ff7fe
commit 85c4fcc96f

View file

@ -14,6 +14,10 @@ describe("E2E: safe-chain CLI python/pip support", () => {
await container.start(); await container.start();
// Note: We do NOT run 'safe-chain setup' here. // Note: We do NOT run 'safe-chain setup' here.
// We want to test the 'safe-chain' CLI command directly. // We want to test the 'safe-chain' CLI command directly.
// 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 () => { afterEach(async () => {