diff options
author | Bjørn Erik Pedersen <[email protected]> | 2023-05-18 15:50:48 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-05-18 17:55:29 +0200 |
commit | 7c647bcaeba7a08955eb3a66a42cf673404731df (patch) | |
tree | abe1f7bc4f021376102b50453a7085474306ac00 /cache | |
parent | 95818e27dc9276c33b853f16137de356606d9f9f (diff) | |
download | hugo-7c647bcaeba7a08955eb3a66a42cf673404731df.tar.gz hugo-7c647bcaeba7a08955eb3a66a42cf673404731df.zip |
Allow empty params.mainSections
Updates #10953
Diffstat (limited to 'cache')
-rw-r--r-- | cache/filecache/integration_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cache/filecache/integration_test.go b/cache/filecache/integration_test.go index 909895ec5..a59ea048d 100644 --- a/cache/filecache/integration_test.go +++ b/cache/filecache/integration_test.go @@ -22,6 +22,7 @@ import ( "time" qt "github.com/frankban/quicktest" + "github.com/gohugoio/hugo/htesting" "github.com/gohugoio/hugo/hugolib" ) @@ -51,6 +52,10 @@ title: "Home" } func TestPruneImages(t *testing.T) { + if htesting.IsCI() { + // TODO(bep) + t.Skip("skip flaky test on CI server") + } files := ` -- hugo.toml -- baseURL = "https://example.com" |