Make the linters happy

Signed-off-by: Monis Khan <mok@vmware.com>
This commit is contained in:
Monis Khan 2020-07-08 01:20:34 -04:00
parent fd70eda033
commit 8d6a645915
No known key found for this signature in database
GPG Key ID: 52C90ADA01B269B8
2 changed files with 16 additions and 7 deletions

View File

@ -1,3 +1,8 @@
/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
package integration
import (

View File

@ -1,3 +1,8 @@
/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
package integration
import (
@ -7,16 +12,15 @@ import (
"testing"
)
// force users to opt-in to running the integration tests
// 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
// these tests could be destructive to the cluster under test.
const magicIntegrationTestsEnvVar = "NAME_TEST_INTEGRATION"
var shouldRunIntegrationTests bool
func init() {
shouldRunIntegrationTests, _ = strconv.ParseBool(os.Getenv(magicIntegrationTestsEnvVar))
}
var shouldRunIntegrationTests = func() bool {
b, _ := strconv.ParseBool(os.Getenv(magicIntegrationTestsEnvVar))
return b
}()
func TestMain(m *testing.M) {
if !shouldRunIntegrationTests {