From 3c63b076cc14ccc0b4d5fd2971856bd157f9480c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pa=C5=82ka?= Date: Mon, 7 Oct 2024 14:38:40 +0200 Subject: [PATCH] Don't disable automatic plugin aquisition in tests --- integration-tests/LanguagePluginTest.test.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/integration-tests/LanguagePluginTest.test.scala b/integration-tests/LanguagePluginTest.test.scala index edcd9509..6df7b45c 100644 --- a/integration-tests/LanguagePluginTest.test.scala +++ b/integration-tests/LanguagePluginTest.test.scala @@ -199,12 +199,10 @@ class LanguagePluginTest extends munit.FunSuite { clue(actual) == clue(expectedBootstrapPluginsJson) } - val pulumiUpEnv = ctx.env + ("PULUMI_DISABLE_AUTOMATIC_PLUGIN_ACQUISITION" -> "false") - val pulumiUpOutput = pulumi .up(ctx.stackName, "--skip-preview") - .call(cwd = ctx.programDir, env = pulumiUpEnv) + .call(cwd = ctx.programDir, env = ctx.env) .out .text()