From 1bea9cd718b3328d3061cb6cc745437c3de430cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Mon, 13 Jul 2020 16:21:19 +0200 Subject: [PATCH] Do not use vendor during integration tests --- dev-tools/mage/integtest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/mage/integtest.go b/dev-tools/mage/integtest.go index 94101c5056b..396c010dbc2 100644 --- a/dev-tools/mage/integtest.go +++ b/dev-tools/mage/integtest.go @@ -236,7 +236,7 @@ func initRunner(tester IntegrationTester, dir string, passInEnv map[string]strin // Create the custom env for the runner. env := map[string]string{ insideIntegrationTestEnvVar: "true", - "GOFLAGS": "-mod=vendor", + "GOFLAGS": "-mod=readonly", } for name, value := range passInEnv { env[name] = value