Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-03-03 17:45:13 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-03-03 17:45:13 +0300
commit6a34f88dcc1ac229247decc008471d7449d6d316 (patch)
tree194c786e7ae19d9cfc01daa0f46125d00148b212
parentae383f04c806687cdae184d6138bcf51edbffcb2 (diff)
Skip some tests on CircleCI
-rw-r--r--hugolib/testhelpers_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/testhelpers_test.go b/hugolib/testhelpers_test.go
index 137dbd701..8ecff189a 100644
--- a/hugolib/testhelpers_test.go
+++ b/hugolib/testhelpers_test.go
@@ -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