summaryrefslogtreecommitdiffstats
path: root/htesting
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-23 19:47:20 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-23 19:47:20 +0100
commita9718f44cd6c938448fc697f0ec720ebed7d863a (patch)
treece0225a77a803cf1740bdd2c3d260d572ed55b90 /htesting
parentf802bb236a60dcc6c64d53edac634891272e0c07 (diff)
para: Skip para test when not on CI
Fixes #6963
Diffstat (limited to 'htesting')
-rw-r--r--htesting/test_helpers.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/htesting/test_helpers.go b/htesting/test_helpers.go
index 84b36ee27..b584f4ca0 100644
--- a/htesting/test_helpers.go
+++ b/htesting/test_helpers.go
@@ -15,6 +15,7 @@ package htesting
import (
"math/rand"
+ "os"
"runtime"
"strings"
"time"
@@ -86,3 +87,7 @@ func DiffStringSlices(slice1 []string, slice2 []string) []string {
func DiffStrings(s1, s2 string) []string {
return DiffStringSlices(strings.Fields(s1), strings.Fields(s2))
}
+
+func IsCI() bool {
+ return (os.Getenv("CI") != "" || os.Getenv("CI_LOCAL") != "") && os.Getenv("CIRCLE_BRANCH") == ""
+}