From 1fc3e42c8713cd152fb30ae7b930561ad49964dc Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Tue, 2 May 2023 00:16:56 -0700 Subject: [PATCH] Don't cache test:setup task virtualenv hardcodes absolute paths in generated files, so we cannot cache these artifacts. They cannot be used across machines effectively. --- turborepo-tests/integration/turbo.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/turborepo-tests/integration/turbo.json b/turborepo-tests/integration/turbo.json index 6488da45d9cb2..2a898678ca6e7 100644 --- a/turborepo-tests/integration/turbo.json +++ b/turborepo-tests/integration/turbo.json @@ -9,10 +9,8 @@ "test": { "dependsOn": ["cli#build", "topo", "test:setup"] }, - "test:setup": { - "inputs": ["setup.sh"], - "outputs": [".cram_env/**"] + "cache": false } } }