internal/processtest: suppress issue2475 test for Windows

The result seems flaky unfortunately.
This commit is contained in:
Hajime Hoshi 2023-09-23 00:18:39 +09:00
parent 220bf5140e
commit d4f4854f72

View File

@ -77,6 +77,11 @@ func main() {
return
}
// This test is flaky on Windows (especially on GitHub Actions). Skip this.
if runtime.GOOS == "windows" {
return
}
ebiten.SetCursorMode(ebiten.CursorModeCaptured)
if err := ebiten.RunGame(&Game{}); err != nil {
panic(err)