mirror of https://github.com/status-im/consul.git
15 lines
247 B
Go
15 lines
247 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
package testhelpers
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func SkipFlake(t *testing.T) {
|
||
|
if os.Getenv("RUN_FLAKEY_TESTS") != "true" {
|
||
|
t.Skip("Skipped because marked as flake.")
|
||
|
}
|
||
|
}
|