We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa22b0 commit de4a7f1Copy full SHA for de4a7f1
hugolib/page_test.go
@@ -23,6 +23,7 @@ import (
23
"time"
24
25
"github.com/bep/clocks"
26
+ "github.com/gohugoio/hugo/htesting"
27
"github.com/gohugoio/hugo/markup/asciidocext"
28
"github.com/gohugoio/hugo/markup/rst"
29
"github.com/gohugoio/hugo/tpl"
@@ -368,7 +369,7 @@ func testAllMarkdownEnginesForPages(t *testing.T,
368
369
}{
370
{"md", func() bool { return true }},
371
{"ad", func() bool { return asciidocext.Supports() }},
- {"rst", func() bool { return rst.Supports() }},
372
+ {"rst", func() bool { return !htesting.IsRealCI() && rst.Supports() }},
373
}
374
375
for _, e := range engines {
0 commit comments