resources: Skip the image golden tests when running locally

See #12119
This commit is contained in:
Bjørn Erik Pedersen 2024-02-23 10:30:11 +01:00
parent 554aa58db6
commit c4fe45ff4c
No known key found for this signature in database

View file

@ -30,6 +30,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/gohugoio/hugo/htesting"
"github.com/gohugoio/hugo/resources/images/webp" "github.com/gohugoio/hugo/resources/images/webp"
"github.com/gohugoio/hugo/common/paths" "github.com/gohugoio/hugo/common/paths"
@ -545,6 +546,9 @@ func goldenEqual(img1, img2 *image.NRGBA) bool {
// Issue #8729 // Issue #8729
func TestImageOperationsGoldenWebp(t *testing.T) { func TestImageOperationsGoldenWebp(t *testing.T) {
if !htesting.IsCI() {
t.Skip("skip long running test in local mode")
}
if !webp.Supports() { if !webp.Supports() {
t.Skip("skip webp test") t.Skip("skip webp test")
} }
@ -584,6 +588,9 @@ func TestImageOperationsGoldenWebp(t *testing.T) {
} }
func TestImageOperationsGolden(t *testing.T) { func TestImageOperationsGolden(t *testing.T) {
if !htesting.IsCI() {
t.Skip("skip long running test in local mode")
}
c := qt.New(t) c := qt.New(t)
c.Parallel() c.Parallel()