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 8fe3a0ef9b
commit 2702c6b228

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)