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.
This commit is contained in:
Ryan Richard 2020-07-09 13:43:19 -07:00
parent 81e91accfa
commit d3d9cc6fac
1 changed files with 1 additions and 1 deletions

View File

@ -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))