mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
internal/processtest: suppress issue2475 test for Windows
The result seems flaky unfortunately.
This commit is contained in:
parent
220bf5140e
commit
d4f4854f72
5
internal/processtest/testdata/issue2475.go
vendored
5
internal/processtest/testdata/issue2475.go
vendored
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user