mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Skip flakey server tests on GitHub Action on Windows
This commit is contained in:
parent
9860e0e186
commit
20ef6dcf95
1 changed files with 5 additions and 0 deletions
|
@ -25,6 +25,7 @@ import (
|
||||||
|
|
||||||
"github.com/gohugoio/hugo/config"
|
"github.com/gohugoio/hugo/config"
|
||||||
"github.com/gohugoio/hugo/helpers"
|
"github.com/gohugoio/hugo/helpers"
|
||||||
|
"github.com/gohugoio/hugo/htesting"
|
||||||
"golang.org/x/net/context"
|
"golang.org/x/net/context"
|
||||||
"golang.org/x/sync/errgroup"
|
"golang.org/x/sync/errgroup"
|
||||||
|
|
||||||
|
@ -184,6 +185,10 @@ baseURL="https://example.org"
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestServerBugs(t *testing.T) {
|
func TestServerBugs(t *testing.T) {
|
||||||
|
// TODO(bep) this is flaky on Windows on GH Actions.
|
||||||
|
if htesting.IsGitHubAction() && runtime.GOOS == "windows" {
|
||||||
|
t.Skip("skipping on windows")
|
||||||
|
}
|
||||||
c := qt.New(t)
|
c := qt.New(t)
|
||||||
|
|
||||||
for _, test := range []struct {
|
for _, test := range []struct {
|
||||||
|
|
Loading…
Reference in a new issue