From d3d9cc6fac2d3e8c5d89496d34a06b1a206ec8da Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Thu, 9 Jul 2020 13:43:19 -0700 Subject: [PATCH] Change the name of the env var that turns on integration tests - Trying to use "placeholder-name" or "placeholder_name" everywhere that should later be changed to the actual name of the product, so we can just do a simple search and replace when we have a name. --- test/integration/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/main_test.go b/test/integration/main_test.go index a6cde80f..9172ac43 100644 --- a/test/integration/main_test.go +++ b/test/integration/main_test.go @@ -15,7 +15,7 @@ import ( // force users to opt-in to running the integration tests. // this prevents them from running if someone does `go test ./...` // these tests could be destructive to the cluster under test. -const magicIntegrationTestsEnvVar = "NAME_TEST_INTEGRATION" +const magicIntegrationTestsEnvVar = "PLACEHOLDER_NAME_TEST_INTEGRATION" var shouldRunIntegrationTests = func() bool { b, _ := strconv.ParseBool(os.Getenv(magicIntegrationTestsEnvVar))