From: Bjørn Erik Pedersen Date: Thu, 16 Nov 2023 17:24:20 +0000 (+0100) Subject: common/para: Skip flaky tests on Windows X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=27620daa2;p=brevno-suite%2Fhugo common/para: Skip flaky tests on Windows --- diff --git a/common/para/para_test.go b/common/para/para_test.go index 646b7b36b..5f79130a7 100644 --- a/common/para/para_test.go +++ b/common/para/para_test.go @@ -28,6 +28,9 @@ import ( ) func TestPara(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("skip para test on Windows") + } if runtime.NumCPU() < 4 { t.Skipf("skip para test, CPU count is %d", runtime.NumCPU()) }