From e1b3b8f0fa65cc562fd9379a1ce540ee98c3e685 Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Thu, 4 May 2023 11:16:58 -0700 Subject: [PATCH] Don't cache test:setup task (#4773) 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 } } }