Skip some tests on CircleCI

This commit is contained in:
Bjørn Erik Pedersen 2020-03-03 15:45:13 +01:00
parent ae383f04c8
commit 6a34f88dcc
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -1021,7 +1021,7 @@ func printStringIndexes(s string) {
}
func isCI() bool {
return os.Getenv("CI") != ""
return os.Getenv("CI") != "" && os.Getenv("CIRCLE_BRANCH") == ""
}
// See https://github.com/golang/go/issues/19280