From: Bjørn Erik Pedersen Date: Fri, 6 Apr 2018 15:31:13 +0000 (+0200) Subject: Disable failing test on Travis X-Git-Tag: v0.38.2~11 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2170943ae6e4bcbbcb9cfad244fec5da8c1d6462;p=brevno-suite%2Fhugo Disable failing test on Travis See #4584 --- diff --git a/hugolib/page_test.go b/hugolib/page_test.go index 2b679c84..e2259d06 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -18,6 +18,7 @@ import ( "fmt" "html/template" "os" + "runtime" "path/filepath" "reflect" @@ -911,6 +912,9 @@ func TestPageWithDate(t *testing.T) { } func TestPageWithLastmodFromGitInfo(t *testing.T) { + if runtime.GOOS != "windows" && os.Getenv("CI") == "" { + t.Skip() + } assrt := require.New(t) // We need to use the OS fs for this.